forked from tonyseek/simple-rbac
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (29 loc) · 989 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
from setuptools import setup
with open('README.rst') as readme:
next(readme)
long_description = ''.join(readme).strip()
setup(
name='simple-rbac',
version='0.1.1',
description='A simple role based access control utility',
long_description=long_description,
keywords='rbac permission acl access-control',
author='Jiangge Zhang',
author_email='[email protected]',
url='http://github.tonyseek.com/simple-rbac/',
license='MIT License',
packages=['rbac'],
zip_safe=False,
platforms=['Any'],
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Security',
'Topic :: Software Development :: Libraries :: Python Modules'
],
)