-
Notifications
You must be signed in to change notification settings - Fork 201
/
old_setup.py
43 lines (41 loc) · 1.18 KB
/
old_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") as fh:
long_description = fh.read()
setuptools.setup(
name="autoviz",
version="0.1.806",
author="Ram Seshadri",
# author_email="author@example.com",
description="Automatically Visualize any dataset, any size with a single line of code",
long_description=long_description,
long_description_content_type="text/markdown",
license='Apache License 2.0',
url="https://github.com/AutoViML/AutoViz.git",
packages=setuptools.find_packages(exclude=("tests",)),
install_requires=[
"xlrd",
"wordcloud",
"emoji",
"numpy<1.25.0",
"pandas",
"pyamg",
"matplotlib<=3.7.4",
"seaborn>=0.12.2",
"scikit-learn",
"statsmodels",
"nltk",
"textblob",
"holoviews~=1.14.9",
"bokeh~=2.4.2",
"hvplot~=0.7.3",
"panel>=0.12.6",
"xgboost>=0.82,<1.7",
"fsspec>=0.8.3",
"typing-extensions>=4.1.1",
"pandas-dq>=1.29"
],
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
)