-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsetup.py
30 lines (27 loc) · 844 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
from setuptools import setup, find_packages
requirements = [
'Flask>=1.0.2,<2',
]
setup(
name='flask-pundit',
version='1.2.2',
license='MIT',
url='https://github.com/anurag90x/flask-pundit',
author='Anurag Chaudhury',
author_email='[email protected]',
description='Simple library to manage resource authorization and scoping',
packages=find_packages(exclude=['tests']),
zip_safe=False,
include_package_data=True,
platforms='any',
test_suite='nose.collector',
install_requires=requirements,
tests_require=['mock==1.3.0'],
classifiers=[
'Framework :: Flask',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.7',
'License :: OSI Approved :: MIT License'
]
)