-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
44 lines (42 loc) · 1.31 KB
/
setup.py
File metadata and controls
44 lines (42 loc) · 1.31 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
37
38
39
40
41
42
43
44
import sys
from setuptools import setup, find_packages
requirements = [
'Flask', 'werkzeug', 'jinja2', 'peewee>2.0.0', 'wtforms', 'wtf-peewee',
'flask-peewee'
]
if sys.version_info[:2] < (2, 6):
requirements.append('simplejson')
setup(
name='flask-peewee-swagger',
version='1.1.5',
url='http://github.com/hapyak/flask-peewee-swagger/',
license='BSD',
author='Jason Horman',
author_email='jhorman@hapyak.com',
description='Swagger Documentation for flask-peewee apis',
packages=find_packages(),
package_data={
'example': [
'requirements.txt'
],
'flask_peewee_swagger': [
'static/swagger-ui-*/css/*.css',
'static/swagger-ui-*/images/*.png',
'static/swagger-ui-*/lib/*.js',
'static/swagger-ui-*/*.js',
'templates/*.jinja2'
],
},
zip_safe=False,
platforms='any',
install_requires=requirements,
classifiers=[
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)