-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (32 loc) · 1.21 KB
/
setup.py
File metadata and controls
36 lines (32 loc) · 1.21 KB
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
from setuptools import setup
def readme():
with open('README.rst') as f:
return f.read()
setup(name='flask-api-handler',
version='0.1.6',
description='A small wrapper for flask app to ease the endpoints creation',
long_description=readme(),
keywords='Flask API REST flask-restful',
url='https://github.com/shahar84/flask-api-handler',
author='Shahar Polak',
author_email='makore.shahar@gmail.com',
license='MIT',
packages=['flask_api_handler'],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
# Specify the Python versions you support here. In particular, ensure
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
install_requires=[
'flask',
],
include_package_data=True,
zip_safe=False)