forked from AutoViML/AutoViz
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (32 loc) · 1001 Bytes
/
setup.py
File metadata and controls
35 lines (32 loc) · 1001 Bytes
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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="autoviz",
version="0.1.730",
author="Ram Seshadri",
# author_email="[email protected]",
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",
packages=setuptools.find_packages(exclude=("tests",)),
install_requires=[
"xlrd",
"numpy",
"pandas",
"matplotlib>=3.3.3",
"seaborn>=0.11.1",
"holoviews~=1.17.1",
"bokeh~=3.2.2",
"hvplot~=0.8.4",
"panel>=1.2.3",
"fsspec>=0.8.3",
"typing-extensions>=4.1.1"
],
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
)