forked from liuyxpp/mpltex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
48 lines (43 loc) · 1.33 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
"""
setup.py
========
:copyright: (c) 2014 by Yi-Xin Liu
:license: BSD, see LICENSE.txt for more details.
"""
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
import os
import sys
cwd = os.path.dirname(os.path.abspath(__file__))
# Read __version__ from _version.py and add it into the current variable space.
exec(open('mpltex/_version.py').read())
setup(
name='mpltex',
version=__version__,
license='BSD',
description='mpltex is a python package for creating publication-quality plots using matplotlib.',
author='Yi-Xin Liu',
author_email='[email protected]',
url='https://github.com/liuyxpp/mpltex',
packages=['mpltex'],
include_package_data=True,
zip_safe=False,
long_description=open(os.path.join(cwd, 'README.rst')).read(),
install_requires=[
'matplotlib',
'palettable',
],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering',
'Topic :: Education', ],
)