-
Notifications
You must be signed in to change notification settings - Fork 102
/
setup.py
43 lines (41 loc) · 1.22 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
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="autoviml",
version="0.1.800",
author="Ram Seshadri",
# author_email="author@example.com",
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>=1.24",
"pandas>=1.1.3, <2.0",
"xlrd",
"matplotlib>3.7.4",
"beautifulsoup4",
"emoji",
"ipython",
"jupyter",
"seaborn",
"catboost",
"textblob",
"nltk",
"regex",
"xgboost>=0.82,<1.7",
"vaderSentiment",
"imbalanced-learn>=0.10.1",
"shap>=0.36.0",
"imbalanced_ensemble>=0.2.0",
"scikit-learn>=0.24,<=1.2.2",
"lightgbm>=3.0.0",
],
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
)