forked from tonyseek/simple-rbac
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (30 loc) · 1.25 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
#!/usr/bin/env python
#-*- coding:utf-8 -*-
from setuptools import setup
long_description = open("README.rst", "r").read().decode("utf-8")
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"]
metadata = {'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': "TonySeek",
'author_email': "[email protected]",
'url': "http://github.tonyseek.com/simple-rbac/",
'license': "MIT License",
'packages': ["rbac"],
'zip_safe': True,
'platforms': "any",
'test_suite': "tests.run_tests",
'classifiers': classifiers}
if __name__ == "__main__":
setup(**metadata)