-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (28 loc) · 991 Bytes
/
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
from setuptools import setup
setup(
name='simpleplotlib',
packages=['simpleplotlib'],
version='0.17',
description='A matplotlib wrapper focused on beauty and simplicity',
author='Matthew K. Mukerjee',
author_email='[email protected]',
url='https://github.com/mukerjee/simpleplotlib',
download_url='https://github.com/mukerjee/simpleplotlib/tarball/0.17',
license='MIT License',
keywords=['matplotlib', 'plots', 'beauty', 'simplicity'],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Topic :: Scientific/Engineering'
],
install_requires=[
'matplotlib>=2.0.0',
'numpy>=1.14.0',
'dotmap',
]
)