-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
43 lines (39 loc) · 1.23 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
"""
setup.py
========
: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('craftplot/_version.py').read())
setup(
name='craftplot',
version=__version__,
license='BSD',
description='craftplot is a python package based on mpltex for producing publication quality images for science using matplotlib.',
author='Zhenghao Wu',
author_email='w415146142@gmail.com',
url='https://github.com/Chenghao-Wu/craftplot',
packages=['craftplot'],
include_package_data=True,
zip_safe=False,
long_description=open(os.path.join(cwd, 'README')).read(),
long_description_content_type="text/markdown",
install_requires=[
'matplotlib',
'palettable',
],
classifiers=[
"Programming Language :: Python :: 3",
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Scientific/Engineering',],
)