added setup.py
This commit is contained in:
parent
8d744a916f
commit
00ab041bc8
@ -0,0 +1 @@
|
||||
__version__ = '0.1.0'
|
39
setup.py
Normal file
39
setup.py
Normal file
@ -0,0 +1,39 @@
|
||||
from setuptools import setup, find_packages
|
||||
|
||||
|
||||
setup(
|
||||
name='rugwebsite',
|
||||
version=__import__('rugwebsite').__version__,
|
||||
|
||||
description='RUG SAML2 example',
|
||||
long_description='RUG SAML2 example',
|
||||
|
||||
url='https://git.webhosting.rug.nl/p253591/rug-website/',
|
||||
|
||||
author='Herbert Kruitbosch',
|
||||
author_email='H.T.Kruitbosch@rug.nl',
|
||||
license='Only for use within the University of Groningen and only with permission from the authors.',
|
||||
|
||||
classifiers=[
|
||||
'Development Status :: 4 - Beta',
|
||||
'License :: Only with authors permission',
|
||||
'Programming Language :: Python :: 3',
|
||||
'Programming Language :: Python :: 3.5',
|
||||
],
|
||||
|
||||
# What does your project relate to?
|
||||
keywords='saml2, rug',
|
||||
packages=find_packages(exclude=[]),
|
||||
include_package_data=True,
|
||||
|
||||
install_requires=[
|
||||
'django>=1.11.7,<1.12',
|
||||
'django-bootstrap4>=0.0.4,<0.1',
|
||||
'django-saml2-pro-auth>=0.0.2,<0.1'
|
||||
],
|
||||
extras_require={
|
||||
'dev': [],
|
||||
'test': [],
|
||||
},
|
||||
zip_safe=False,
|
||||
)
|
Loading…
Reference in New Issue
Block a user