forked from dxc-technology/DXC-Industrialized-AI-Starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (33 loc) · 1.46 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
from setuptools import setup, find_packages
def readme():
with open('README.md') as f:
README = f.read()
return README
setup(
name="DXC-Industrialized-AI-Starter",
version="2.3.9",
description="Python library which is extensively used for all AI projects",
long_description=readme(),
long_description_content_type="text/markdown",
url="https://github.com/dxc-technology/DXC-Industrialized-AI-Starter",
#download_url = "https://github.com/dxc-technology/DXC-Industrialized-AI-Starter/releases/tag/v1.0.tar.gz",
author="DXC",
license="Apache License 2.0",
platforms='any',
classifiers=[
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.7",
],
#packages=["dxc", "dxc.ai"],
packages=find_packages(),
# include_package_data=True,
install_requires=["JIRA","scikit-learn==0.22.2.post1","auto_ml","Algorithmia==1.7.8","gitpython","flatten_json==0.1.7","pyjanitor","ftfy","arrow","pandas-profiling[notebook]==2.9.0",
"scrubadub","yellowbrick==1.1","datacleaner","missingno","pymongo","IPython","dnspython","pmdarima","pyaf","interpret-community","flask_cors","gevent","tpot","feature_engine","tensorflow","ktrain","raiwidgets","pandas","janitor"],
entry_points={
"console_scripts": [
"dxc=dxc.ai:main",
]
},
# package_data={'datasets/data': ['datasets/data/*'],},
include_package_data=True,
)