-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathsetup.py
53 lines (48 loc) · 1.85 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
53
from distutils.core import setup
# from setuptools import setup, find_packages
import codecs
import os
import re
import glob
import easyplot
here = os.path.abspath(os.path.dirname(__file__))
# Get the long description from the relevant file
with codecs.open(os.path.join(here, 'DESCRIPTION.rst'), encoding='utf-8') as f:
long_description = f.read()
import easyplot
setup(name='EasyPlot',
version=easyplot.__version__,
description='A matplotlib wrapper for fast and easy generation of reusable plots',
author='Sudeep Mandal',
author_email='sudeepmandal@gmail.com',
url='https://github.com/HamsterHuey/easyplot',
packages=['easyplot'],
data_files = [('', ['LICENSE.txt']),
('', ['DESCRIPTION.rst']),
('', ['README.md']),
('', ['README.html']),
('', ['CHANGELOG.txt']),
('images', glob.glob('images/*.png')),
('docs', glob.glob('docs/*.ipynb')),
],
# requires = ['matplotlib'],
license='MIT',
platforms='any',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: Other Audience',
'Intended Audience :: Science/Research',
'Intended Audience :: Education',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 2.7',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Information Analysis',
'Topic :: Scientific/Engineering :: Visualization',
'Topic :: Software Development :: Libraries',
'Topic :: Utilities',
],
long_description = long_description,
keywords='matplotlib wrapper plot easyplot',
)