-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (31 loc) · 898 Bytes
/
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
"""
Flask-Pigeon
------------
Flask extension for Pigeon
"""
from setuptools import setup
setup(name='Flask-Pigeon',
version='0.12.0',
description='Flask messages extension.',
long_description=__doc__,
author='reterVision',
author_email='reterclose@gmail.com',
url='http://github.com/reterVision/flask-pigeon',
license='MIT',
packages=['flask_pigeon'],
platforms="any",
zip_safe=True,
install_requires=[
'setuptools',
'Flask>=0.8',
],
classifiers=[
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules'
],
)