Skip to content

Commit d5deeb8

Browse files
committed
adding setup info
1 parent fdb4fd5 commit d5deeb8

File tree

3 files changed

+31
-0
lines changed

3 files changed

+31
-0
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
*~
2+
13
# Byte-compiled / optimized / DLL files
24
__pycache__/
35
*.py[cod]

setup.cfg

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[metadata]
2+
description-file = README.md

setup.py

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
from distutils.core import setup
2+
3+
REQUIREMENTS = ['matplotlib>=2.0.0', 'numpy', 'dotmap']
4+
5+
setup(
6+
name='simpleplotlib',
7+
packages=['simpleplotlib'],
8+
version='0.1',
9+
description='A matplotlib wrapper focused on beauty and simplicity',
10+
author='Matthew K. Mukerjee',
11+
author_email='[email protected]',
12+
url='https://github.com/mukerjee/simpleplotlib',
13+
download_url='https://github.com/mukerjee/simpleplotlib/tarball/0.1',
14+
license='MIT License',
15+
keywords=['matplotlib', 'plots', 'beauty', 'simplicity'],
16+
classifiers=[
17+
'Development Status :: 3 - Alpha',
18+
'Intended Audience :: Science/Research',
19+
'License :: OSI Approved :: MIT License',
20+
'Operating System :: OS Independent',
21+
'Programming Language :: Python :: 2.6',
22+
'Programming Language :: Python :: 2.7',
23+
'Programming Language :: Python :: 3.3',
24+
'Topic :: Scientific/Engineering'
25+
],
26+
install_requires=REQUIREMENTS
27+
)

0 commit comments

Comments
 (0)