-
Notifications
You must be signed in to change notification settings - Fork 21
/
setup.py
40 lines (36 loc) · 1.08 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
"""
Flask-Sillywalk
---------------
This is the description for that library
"""
from setuptools import setup, find_packages
with open('README.rst') as f:
description = f.read()
setup(
name='Flask-Sillywalk',
version='2.1',
url='https://github.com/hobbeswalsh/flask-sillywalk',
license='BSD',
author='Robin Walsh & Harvey Rogers',
author_email='[email protected]',
description='So you want to implement an auto-documenting API?',
long_description=description,
packages=find_packages(exclude=['ez_setup', 'examples']),
zip_safe=False,
include_package_data=True,
platforms='any',
install_requires=[
'Flask',
'pytest-cov',
'coverage',
],
classifiers=[
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules'
],
)