-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
29 lines (28 loc) · 915 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
from setuptools import setup
setup(
name='Flask-Alcool',
version='0.4',
url='http://github.com/Kozea/flask-alcool',
license='Beer License',
author='Yohann Rebattu',
author_email='[email protected]',
description='Implement access control lists as decorators for flask.',
long_description=__doc__,
packages=['flask_alcool'],
data_files=[('', ["LICENSE.txt"])],
zip_safe=False,
install_requires=[
'Flask',
'Jinja2>=2.5'
],
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)