From 00ab041bc890a8d1108bfd800965a7f432f02953 Mon Sep 17 00:00:00 2001 From: Herbert Kruitbosch Date: Tue, 14 Nov 2017 10:16:58 +0100 Subject: [PATCH] added setup.py --- rugwebsite/__init__.py | 1 + setup.py | 39 +++++++++++++++++++++++++++++++++++++++ 2 files changed, 40 insertions(+) create mode 100644 setup.py diff --git a/rugwebsite/__init__.py b/rugwebsite/__init__.py index e69de29..541f859 100644 --- a/rugwebsite/__init__.py +++ b/rugwebsite/__init__.py @@ -0,0 +1 @@ +__version__ = '0.1.0' \ No newline at end of file diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..3a4282e --- /dev/null +++ b/setup.py @@ -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, +)