forked from pitchmuc/adobe-analytics-api-2.0
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
43 lines (41 loc) · 1.29 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
CLASSIFIERS = [
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Scientific/Engineering :: Information Analysis",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Development Status :: 4 - Beta"
]
setup(
name='aanalytics2',
version="0.1.2",
license='GPL',
description='Adobe Analytics API 2.0 python wrapper',
long_description=long_description,
long_description_content_type='text/markdown',
author='Julien Piccini',
author_email='piccini.julien@gmail.com',
url='https://github.com/pitchmuc/adobe_analytics_api_2.0',
keywords=['adobe', 'analytics', 'API', 'python'],
packages=find_packages(),
include_package_data=True,
install_requires=[
'pandas',
'pathlib2',
'pathlib',
'requests',
'PyJWT[crypto]',
'PyJWT',
"dicttoxml",
"pytest"
],
classifiers=CLASSIFIERS,
python_requires='>=3.6'
)