-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
31 lines (27 loc) · 1.04 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
from setuptools import setup,find_packages
package_name ='DeepManufacturing'
with open("README.md", "r") as fh:
LONG_DESCRIPTION = fh.read()
classifiers=[
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3 :: Only',
'Intended Audience :: Education']
setup(name=package_name,\
version='0.0.7',\
description='AI and Machine Learning for manufacturing related datasets',
long_description=LONG_DESCRIPTION,
author='Amir Barati Farimani',
author_email='[email protected]',
license='MIT',
classifiers=classifiers,
keywords=' ',
python_requires='>=3.5, <4',
install_requires=['sklearn', 'matplotlib',
'xgboost', 'scikit-learn',
'timm', 'Pillow'],
packages=find_packages(),
zip_safe=False)