-
Notifications
You must be signed in to change notification settings - Fork 15
/
setup.py
26 lines (24 loc) · 1010 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
from setuptools import setup
required_modules = ['bouncer>=0.1.8', 'Flask>=0.9', 'blinker']
setup(name='flask-bouncer',
version='0.3.0',
description='Flask Simple Declarative Authentication based on Ryan Bates excellent cancan library',
url='http://github.com/bouncer-app/flask-bouncer',
author='Jonathan Tushman',
author_email='[email protected]',
install_requires=required_modules,
license='MIT',
py_modules=['flask_bouncer'],
zip_safe=False,
platforms='any',
tests_require=['nose', 'flask-classy>=0.6.10'],
test_suite='nose.collector',
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'
])