forked from sandialabs/toyplot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
47 lines (44 loc) · 1.85 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
42
43
44
45
46
47
# Copyright 2014, Sandia Corporation. Under the terms of Contract
# DE-AC04-94AL85000 with Sandia Corporation, the U.S. Government retains certain
# rights in this software.
from setuptools import setup, find_packages
import re
setup(
name="toyplot",
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Environment :: Other Environment",
"Environment :: Web Environment",
"Framework :: IPython",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Visualization",
],
description="A modern plotting toolkit supporting electronic publishing and reproducibility.",
install_requires=[
"arrow",
"colormath",
"multipledispatch",
"numpy>=1.7",
"reportlab",
],
long_description="""Toyplot is the kid-sized plotting toolkit for Python with grownup-sized goals:
* Develop beautiful interactive, animated plots that embrace the unique capabilities of electronic publishing and support repoducibility.
* Create the best possible data graphics "out-of-the-box", maximizing data ink and minimizing chartjunk.
* Provide a clean, minimalist interface that scientists and engineers will love.
See the Toyplot documentation at http://toyplot.readthedocs.org, and the Toyplot sources at http://github.com/sandialabs/toyplot""",
maintainer="Timothy M. Shead",
maintainer_email="tshead@sandia.gov",
url="http://toyplot.readthedocs.org",
version=re.search(
r"^__version__ = ['\"]([^'\"]*)['\"]",
open(
"toyplot/__init__.py",
"r").read(),
re.M).group(1),
packages=find_packages(),
)