forked from nschloe/tikzplotlib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
52 lines (47 loc) · 1.46 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
48
49
50
51
52
# -*- coding: utf-8 -*-
#
from setuptools import setup
import os
import codecs
# https://packaging.python.org/single_source_version/
base_dir = os.path.abspath(os.path.dirname(__file__))
about = {}
with open(os.path.join(base_dir, 'matplotlib2tikz', '__about__.py')) as f:
exec(f.read(), about)
def read(fname):
try:
content = codecs.open(
os.path.join(os.path.dirname(__file__), fname),
encoding='utf-8'
).read()
except Exception:
content = ''
return content
setup(
name='matplotlib2tikz',
version=about['__version__'],
packages=['matplotlib2tikz'],
url='https://github.com/nschloe/matplotlib2tikz',
download_url='https://pypi.python.org/pypi/matplotlib2tikz',
author=about['__author__'],
author_email=about['__email__'],
install_requires=[
'matplotlib >=1.4.0',
'numpy',
'Pillow >= 3.0.0',
'pipdated',
],
description='convert matplotlib figures into TikZ/PGFPlots',
long_description=read('README.rst'),
license=about['__license__'],
classifiers=[
about['__status__'],
about['__license__'],
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Multimedia :: Graphics :: Graphics Conversion',
'Topic :: Scientific/Engineering :: Visualization'
]
)