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 49 50 51 52 53 54 55
|
#!/usr/bin/python -tt
import sys
exec(compile(open("fedora/release.py").read(), "fedora/release.py", 'exec'))
from setuptools import find_packages, setup
setup(
name=NAME,
version=VERSION,
description=DESCRIPTION,
author=AUTHOR,
author_email=EMAIL,
license=LICENSE,
keywords='Fedora Python Webservices',
url=URL,
packages=find_packages(),
py_modules=['flask_fas', 'flask_fas_openid'],
include_package_data=True,
# non-setuptools package. When everything we care about uses
# python-2.5 distutils we can add these:
# for bodhi (koji yum)
install_requires=[
'munch',
'kitchen',
'requests',
'beautifulsoup4',
'urllib3',
'six >= 1.4.0',
'filelock',
'openidc-client',
],
extras_require={
'wsgi': ['repoze.who', 'Beaker', 'Paste'],
'flask': [
'Flask', 'Flask_WTF', 'python-openid', 'python-openid-teams',
'python-openid-cla',
],
},
message_extractors={
'fedora': [
('**.py', 'python', None),
],
},
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: GNU Lesser General Public License v2 or later (LGPLv2+)',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)
|