forked from FedericoCeratto/bottle-cork
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
41 lines (37 loc) · 1.08 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
40
41
#!/usr/bin/env python
from setuptools import setup
__version__ = '0.11a'
CLASSIFIERS = map(str.strip,
"""Environment :: Console
License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)
Natural Language :: English
Operating System :: POSIX :: Linux
Programming Language :: Python
Topic :: Internet :: WWW/HTTP :: WSGI
Topic :: Security
Topic :: Software Development :: Libraries :: Python Modules
""".splitlines())
setup(
name="bottle-cork",
version=__version__,
author="Federico Ceratto",
author_email="federico.ceratto@gmail.com",
description="Authentication/Authorization library for Bottle",
license="LGPLv3+",
url="http://cork.firelet.net/",
long_description="Cork is a simple Authentication/Authorization library" \
"for the Bottle web framework.",
classifiers=CLASSIFIERS,
install_requires=[
'Beaker',
'Bottle',
'pycrypto',
],
extras_require = {
'scrypt': ["scrypt>=0.6.1"],
},
packages=['cork'],
platforms=['Linux'],
test_suite='nose.collector',
tests_require=['nose'],
)