Licence, readme and cie

This commit is contained in:
Valentin Samir
2015-05-22 21:14:33 +02:00
parent c16bb2d7f0
commit 6981433bdf
4 changed files with 750 additions and 0 deletions

33
setup.py Normal file
View File

@ -0,0 +1,33 @@
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',
version='0.1',
packages=['cas_server'],
include_package_data=True,
license='GPLv3',
description='A Django app implementing the CAS Protocol 3.0 Specification',
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',
# Replace these appropriately if you are stuck on Python 2.
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
],
)