-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathsetup.py
51 lines (46 loc) · 1.56 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
"""
Flask-GoogleCharts
==================
Adds Google Charts API support to Flask.
Links
=====
* `Source Code <https://github.com/wikkiewikkie/flask-googlecharts>`_
* `Issues <https://github.com/wikkiewikkie/flask-googlecharts/issues>`_
"""
from setuptools import setup
extra = {}
install_requires = ['Flask>=0.10.1']
setup(
name='Flask-GoogleCharts',
version='0.1.0',
url='http://github.com/wikkiewikkie/flask-googlecharts/',
license='MIT',
author='Kevin Schellenberg',
author_email='wikkiewikkie@gmail.com',
description='Google Charts API support for Flask',
long_description=__doc__,
packages=['flask_googlecharts'],
package_data={
'flask_googlecharts': ['templates/*', 'static/*'], },
py_modules=['flask_googlecharts'],
zip_safe=False,
platforms='any',
install_requires=install_requires,
test_suite='test_googlecharts',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Flask',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: JavaScript',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules'
],
**extra)