-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathsetup.py
More file actions
42 lines (38 loc) · 1.28 KB
/
Copy pathsetup.py
File metadata and controls
42 lines (38 loc) · 1.28 KB
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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="optimalflow",
version="0.1.11",
author="Tony Dong",
author_email="tonyleidong@gmail.com",
description="OptimalFlow is an Omni-ensemble Automated Machine Learning toolkit to help data scientists building optimal models in easy way, and automate Machine Learning workflow with simple code.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/tonyleidong/OptimalFlow",
keywords = ['automated machine learning', 'features selection', 'model selection','AutoML','omni-ensemble machine learning','Machine Learning Web App'],
packages=setuptools.find_packages(),
include_package_data = True,
install_requires=[
'pandas',
'scikit-learn',
'statsmodels',
'scipy',
'joblib',
'category_encoders',
'plotly',
'flask',
'wtforms',
'werkzeug',
'matplotlib',
'pandas',
'xgboost',
'pywin32'
],
classifiers=[
"Programming Language :: Python :: 3.8",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires='>=3.7',
)