-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (29 loc) · 920 Bytes
/
setup.py
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
import os
from setuptools import find_packages, setup
# allow setup.py to be run from any path
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='pyTUID',
version='1.3.5',
packages=find_packages(),
include_package_data=True,
license='MIT',
description='Django app for authentication via TUID (CAS)',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/d120/pyTUID',
author='Fabian Franke',
author_email='ffranke@d120.de',
install_requires=[
'python-cas',
],
classifiers=[
'Environment :: Web Environment',
'Framework :: Django',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
],
)