-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (21 loc) · 726 Bytes
/
setup.py
File metadata and controls
22 lines (21 loc) · 726 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import setup
setup(name='PyFlot',
version='0.2',
description='Python Interface the JavaScript Flot chart librabry',
long_description=open('README.rst', 'r').read(),
license='MIT',
author='Andre da Palma',
author_email='andrefsp@gmail.com',
url='http://github.com/andrefsp/pyflot',
packages=['flot', 'flot.templatetags'],
package_dir={'flot': 'flot'},
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: JavaScript",
"Operating System :: OS Independent",
"Topic :: Internet",
"Topic :: Utilities",
"Topic :: Software Development :: Libraries"
]
)