forked from mpld3/matplotlylib
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (30 loc) · 945 Bytes
/
setup.py
File metadata and controls
32 lines (30 loc) · 945 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
# try:
# from setuptools import setup
# except ImportError:
from distutils.core import setup
DESCRIPTION = "Matplotlib to Plotly Converter"
LONG_DESCRIPTION = open('README.md').read()
NAME = "matplotlylib"
AUTHOR = "Andrew Seier"
AUTHOR_EMAIL = "andseier@gmail.com"
MAINTAINER = "Andrew Seier"
MAINTAINER_EMAIL = "andseier@gmail.com"
URL = 'http:/mpld3.github.com'
DOWNLOAD_URL = 'https://github.com/mpld3/matplotlylib'
LICENSE = 'MIT'
VERSION = '0.1'
setup(name=NAME,
version=VERSION,
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
author=AUTHOR,
author_email=AUTHOR_EMAIL,
install_requires=['plotly', 'matplotlib'],
maintainer=MAINTAINER,
maintainer_email=MAINTAINER_EMAIL,
url=URL,
download_url=DOWNLOAD_URL,
license=LICENSE,
packages=['matplotlylib',
'matplotlylib/mplexporter',
'matplotlylib/mplexporter/renderers'])