forked from unbracketed/python-flot-utils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
24 lines (22 loc) · 772 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
import os
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name = "python-flot-utils",
version = "0.2.1",
author = "Brian Luft",
author_email = "[email protected]",
description = ("Makes it easy to convert Python data structures"
" to JSON strings suitable for flot series and options"),
license = "MIT",
keywords = "flot graphs charts javascript data timeseries time series",
url='https://github.com/unbracketed/python-flot-utils/',
packages=['pyflot'],
long_description=read('README.rst'),
classifiers=[
"Development Status :: 3 - Alpha",
"Topic :: Utilities",
"License :: OSI Approved :: MIT License",
],
)