-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
37 lines (33 loc) · 1.13 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
#!/usr/bin/env python
version = '1.1.2'
sdict = {
'name' : 'simpleacl',
'version' : version,
'description' : 'Simple Access Control list for Python',
'long_description' : 'Simple Access Control list for Python that includes wsgi middleware.',
'url': 'https://github.com/kyleterry/simpleacl-py',
'author' : 'Kyle Terry',
'author_email' : '[email protected]',
'maintainer' : 'Ivan Zakrevsky',
'maintainer_email' : '[email protected]',
'keywords' : ['acl', 'simpleacl', 'access control list', 'auth list'],
'license' : 'LGPLv2+ License',
'packages' : ['simpleacl'],
'test_suite' : 'tests.all_tests',
'install_requires': [
'nose',
'coverage',
],
'classifiers' : [
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU Lesser General Public License v2 or later (LGPLv2+)',
'Operating System :: OS Independent',
'Programming Language :: Python'],
}
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(**sdict)