-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
43 lines (40 loc) · 1.18 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
"""A setuptools based setup module for Mawdoo3's Ask API"""
# Always prefer setuptools over distutils
from setuptools import setup, find_packages
setup(
name='flask_webservice_skeleton',
version='dev01',
description="Sample Flask API",
url='https://github.com/mjalajel/flask-minimal-webservice',
author='Mahmoud Jalajel',
author_email='[email protected]',
license='MIT',
# See https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Framework :: Flask',
'Intended Audience :: Developers',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Utilities',
],
keywords='flask api microservice',
packages=find_packages(),
py_modules=['app'],
install_requires=[
'click',
'flask',
],
test_suite='nose2.collector.collector',
extras_require={
'test': ['nose2', 'cov-core'],
},
include_package_data=True,
entry_points={
'console_scripts': [
'flask-api=app:run',
],
},
)