-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
32 lines (31 loc) · 1.05 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
from setuptools import setup
setup(
name='webplotlib',
packages=['webplotlib', ],
version='0.1',
description='A package for creating server-side charts/graphs using matplotlib; examples are also given for serving those charts directly via Django.',
author='Kai',
author_email='[email protected]',
url='http://github.com/limist/webplotlib',
download_url='',
keywords="django chart graph matplotlib server-side",
license='GPL',
install_requires=[
'Django',
'matplotlib',
'numpy',
'pytest >= 2',
'setuptools',
],
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Multimedia :: Graphics',
'Topic :: Internet :: WWW/HTTP'],
long_description=open('README', 'r').read()
)