-
Notifications
You must be signed in to change notification settings - Fork 83
/
setup.py
39 lines (34 loc) · 1.18 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
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.1",
description="Plotly Express: a high level wrapper for Plotly.py",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/plotly/plotly_express",
author="Nicolas Kruchten",
author_email="[email protected]",
classifiers=[
"Development Status :: 3 - Alpha",
"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.6.0",
"plotly>=3.7.1",
"statsmodels>=0.9.0",
"scipy >= 0.14",
],
)