forked from liuyun201990/plotly_express
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
41 lines (37 loc) · 1.31 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
from setuptools import setup, find_packages
from os import path
# io.open is needed for projects that support Python 2.7
# It ensures open() defaults to text mode with universal newlines,
# and accepts an argument to specify the text encoding
# Python 3 only projects can skip this import
from io import open
here = path.abspath(path.dirname(__file__))
with open(path.join(here, "README.md"), encoding="utf-8") as f:
long_description = f.read()
setup(
name="plotly_express",
version="0.2.2", # also update __version__ !
description="Plotly Express - a high level wrapper for Plotly.py",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://plotly.express/",
project_urls={"Github": "https://github.com/plotly/plotly_express/"},
author="Nicolas Kruchten",
author_email="nicolas@plot.ly",
license="MIT",
classifiers=[
"Development Status :: 4 - Beta",
"Topic :: Scientific/Engineering :: Visualization",
"License :: OSI Approved :: MIT License",
],
packages=find_packages(),
package_data={"plotly_express": ["data/*.csv.gz"]},
install_requires=[
"pandas>=0.20.0",
"plotly>=3.9.0",
"statsmodels>=0.9.0",
"scipy>=0.18",
"patsy>=0.5",
"numpy>=1.11",
],
)