forked from kolypto/py-flask-jsontools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·41 lines (35 loc) · 1.12 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
#!/usr/bin/env python
""" JSON API tools for Flask """
from setuptools import setup, find_packages
setup(
# http://pythonhosted.org/setuptools/setuptools.html
name='flask_jsontools',
version='0.1.1-0',
author='Mark Vartanyan',
author_email='[email protected]',
url='https://github.com/kolypto/py-flask-jsontools',
license='BSD',
description=__doc__,
long_description=open('README.rst').read(),
keywords=['flask', 'json'],
packages=find_packages(),
scripts=[],
entry_points={},
install_requires=[
'flask >= 0.10.1',
],
extras_require={},
include_package_data=True,
test_suite='nose.collector',
platforms='any',
classifiers=[
# https://pypi.python.org/pypi?%3Aaction=list_classifiers
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
#'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)