1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- from setuptools import setup,find_packages
- INSTALL_REQUIRES = [
- 'pycodestyle',
- 'ipykernel',
- 'spyder-kernels==0.*',
- 'cloudpickle',
- 'openpyxl',
- 'setuptools',
- 'scipy',
- 'matplotlib',
- 'tsfresh',
- 'hyperopt',
- 'xgboost',
- 'scikit-learn',
- 'pandas',
- 'pandas-compat',
- 'xmltodict',
- 'sqlalchemy',
- 'sqlparse',
- 'pymysql',
- 'xlrd',
- 'pymongo',
- 'jsonref',
- 'faker',
- 'xeger',
- 'simplejson',
- 'mysql',
- 'sqlalchemy-utils'
- ]
- setup(name='cdplib',
- version='0.0.1',
- description='Libraries shared by cdp projects',
- url='https://intra.acdp.at/gogs/tanja/cdplib.git',
- author='Tatiana Zolotareva',
- author_email='tanja.zolotareva@acdp.at',
- install_requires=INSTALL_REQUIRES,
- license='MIT',
- packages=find_packages(),
- zip_safe=False,
- python_requieres = "3")
|