-
Notifications
You must be signed in to change notification settings - Fork 102
/
Copy pathsetup.py
45 lines (43 loc) · 1.26 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
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="autoviml",
version="0.2.02",
author="Ram Seshadri",
# author_email="[email protected]",
description="Automatically Build Variant Interpretable ML models fast - now with CatBoost!",
long_description=long_description,
long_description_content_type="text/markdown",
license='Apache License 2.0',
url="https://github.com/AutoViML/Auto_ViML",
packages=setuptools.find_packages(exclude=("tests",)),
install_requires=[
"numpy<2",
"pandas>=2.0",
"scipy==1.11.4",
"xlrd",
"matplotlib>3.7.4",
"beautifulsoup4",
"emoji",
"ipython",
"jupyter",
"seaborn",
"catboost>=1.2.7",
"textblob",
"nltk",
"regex",
"xgboost>=0.82,<=1.7.6",
"vaderSentiment",
"imbalanced-learn>=0.10.1",
"shap>=0.36.0",
"scikit-learn>=0.24,<=1.5.2",
"lightgbm>=3.0.0",
"networkx>=3.1",
"pandas-dq>=1.29",
],
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
)