-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
39 lines (35 loc) · 1.05 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
#!/usr/bin/env python
from setuptools import setup, find_packages
desc = ''
with open('README.rst') as f:
desc = f.read()
setup(
name='falcon-policy',
version='0.2.0',
description=('Policy middleware for Falcon APIs'),
long_description=desc,
url='https://github.com/falconry/falcon-policy',
author='John Vrbanac',
author_email='[email protected]',
license='Apache v2',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
keywords='falcon middleware policy rbac role based access',
packages=find_packages(exclude=['contrib', 'docs', 'test*']),
install_requires=[
'falcon',
'six',
],
package_data={},
data_files=[],
entry_points={
'console_scripts': [],
},
)