-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
25 lines (24 loc) · 1.19 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
from setuptools import setup, find_packages
setup(name = "artist",
version = "0.18.2",
packages = find_packages(),
url = "http://github.com/davidfokkema/artist/",
bugtrack_url='http://github.com/davidfokkema/artist/issues',
license='GPLv3',
author = "David Fokkema, Arne de Laat",
author_email = "[email protected], [email protected]",
description = "A plotting library for Python with LaTeX output",
long_description=open('README.rst').read(),
keywords=['plots', 'plotting', 'data visualization'],
classifiers=['Intended Audience :: Science/Research',
'Intended Audience :: Education',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering :: Visualization',
'Topic :: Education',
'Topic :: Text Processing :: Markup :: LaTeX',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)'],
install_requires = ['jinja2', 'numpy', 'Pillow'],
package_data={'artist': ['templates/*.tex']},
)