-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (26 loc) · 1.01 KB
/
setup.py
File metadata and controls
26 lines (26 loc) · 1.01 KB
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
from distutils.core import setup
setup(
name = 'labac',
packages = ['labac'], # this must be the same as the name above
version = '0.1',
description = 'Label Based Access Control',
author = 'Prosunjit Biswas',
author_email = 'prosun.csedu@gmail.com',
url = 'https://github.com/prosunjit/labac', # use the URL to the github repo
download_url = 'https://github.com/prosunjit/labac/tarball/0.1', # I'll explain this in a second
keywords = ['access control', 'access control list', 'acl'], # arbitrary keywords
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Development Status :: 4 - Beta",
"Environment :: Other Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
],
long_description = """\
Label Based Access Control.
----------------------------
"""
)