-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
22 lines (21 loc) · 898 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import setup
setup(
# Needed to silence warnings (and to be a worthwhile package)
name='plotly-scientific-plots',
url='https://github.com/rsandler00/plotly-scientific-tools',
author='Roman Sandler',
author_email='[email protected]',
packages=['plotly_scientific_plots'],
install_requires=['numpy', 'scipy', 'plotly', 'colorlover', 'scikit-learn',
'dash', 'dash_core_components', 'dash_html_components'],
version='0.1.0.6',
license='MIT',
description='Python package extending plotly for scientific computing and visualization',
long_description=open('README.md').read(),
long_description_content_type="text/markdown",
classifiers=(
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
),
)