-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
29 lines (26 loc) · 934 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, find_packages
from kaplot import __version__
with open('longdesc.rst') as f:
long_description = f.read()
setup(
name = 'kaplot',
version = __version__,
packages = find_packages(),
install_requires = ['scipy','numpy','matplotlib','decorator'],
author = 'Kamil Mielczarek',
author_email = 'kamil.m@gmail.com',
url = 'http://github.com/kamilm/kaplot',
description = 'A plotting tool built around/on matplotlib',
long_description = long_description,
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Visualization',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Operating System :: OS Independent',
'License :: OSI Approved :: MIT License'
],
data_files=[('share/kaplot', ['README.md', 'longdesc.rst',
'LICENSE', 'CHANGES']),]
)