-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
48 lines (43 loc) · 1.31 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
42
43
44
45
46
47
48
"""
Flask-Obscure
-------------
This is the description for that library
"""
import os
import sys
from setuptools import setup
BASEDIR = os.path.dirname(__file__)
for _ in open(os.path.join(BASEDIR, 'flask_obscure.py')).readlines():
if _.startswith('__version__'):
exec(_.strip(), None)
break
requirements = [
'Flask>=0.10',
'obscure'
]
setup(
name='Flask-Obscure',
url='http://www.github.com/jidn/flask-obscure/',
author='Clinton James',
author_email='[email protected]',
description='Obscure numerical IDs in URLs',
long_description=open(os.path.join(BASEDIR, 'README.rst')).read(),
version=__version__,
license='Apache License 2.0',
keywords=['flask', 'REST', 'obfuscate', 'ID'],
classifiers=[
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules'
],
py_modules=['flask_obscure'],
zip_safe=False,
include_package_data=True,
platforms='any',
install_requires=requirements,
)