-
Notifications
You must be signed in to change notification settings - Fork 111
/
setup.py
54 lines (51 loc) · 1.62 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
44
45
46
47
48
49
50
51
52
53
54
from setuptools import setup
SCHEDULE_VERSION = '2.0.5'
SCHEDULE_DOWNLOAD_URL = (
'https://github.com/Cubewise-code/TM1py/tarball/' + SCHEDULE_VERSION
)
with open('README.md', 'r') as f:
long_description = f.read()
setup(
name='TM1py',
packages=['TM1py', 'TM1py/Exceptions', 'TM1py/Objects', 'TM1py/Services', 'TM1py/Utils'],
version=SCHEDULE_VERSION,
description='A python module for TM1.',
long_description=long_description,
long_description_content_type='text/markdown',
license='MIT',
author='Marius Wirtz',
author_email='[email protected]',
url='https://github.com/cubewise-code/tm1py',
download_url=SCHEDULE_DOWNLOAD_URL,
keywords=[
'TM1', 'IBM Cognos TM1', 'Planning Analytics', 'PA', 'Cognos'
],
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Natural Language :: English',
],
install_requires=[
'ijson',
'requests',
'pytz',
'requests_negotiate_sspi;platform_system=="Windows"',
'mdxpy>=1.3.1',
'networkx'],
extras_require={
"pandas": ["pandas"],
"dev": [
"pytest",
"pytest-xdist",
"python-dateutil"
]
},
python_requires='>=3.6',
)