django-cas-server/setup.py

54 lines
1.8 KiB
Python
Raw Normal View History

2015-05-22 19:14:33 +00:00
import os
from setuptools import setup
with open(os.path.join(os.path.dirname(__file__), 'README.rst')) as readme:
README = readme.read()
# allow setup.py to be run from any path
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
setup(
name='django-cas-server',
2015-12-15 11:41:18 +00:00
version='0.4',
2015-12-12 17:02:51 +00:00
packages=[
'cas_server', 'cas_server.migrations',
'cas_server.management', 'cas_server.management.commands'
],
2015-05-22 19:14:33 +00:00
include_package_data=True,
license='GPLv3',
2015-12-12 17:02:51 +00:00
description=(
'A Django Central Authentication Service server '
'implementing the CAS Protocol 3.0 Specification'
),
2015-05-22 19:14:33 +00:00
long_description=README,
author='Valentin Samir',
author_email='valentin.samir@crans.org',
classifiers=[
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
2015-12-12 12:07:36 +00:00
'Programming Language :: Python :: 3',
2015-05-22 19:14:33 +00:00
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
],
2015-12-12 12:07:36 +00:00
package_data={
'cas_server': [
'templates/cas_server/*',
'static/cas_server/*',
'locale/*/LC_MESSAGES/*',
]
},
keywords=['django', 'cas', 'cas3', 'server', 'sso', 'single sign-on', 'authentication', 'auth'],
2015-12-12 17:02:51 +00:00
install_requires=[
'Django >= 1.7,<1.10', 'requests >= 2.4', 'requests_futures >= 0.9.5',
'django-picklefield >= 0.3.1', 'django-bootstrap3 >= 5.4', 'lxml >= 3.4'
],
2015-12-12 12:07:36 +00:00
url="https://github.com/nitmir/django-cas-server",
download_url="https://github.com/nitmir/django-cas-server/releases",
zip_safe=False
2015-05-22 19:14:33 +00:00
)