-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
40 lines (32 loc) · 1.15 KB
/
setup.py
File metadata and controls
40 lines (32 loc) · 1.15 KB
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
34
35
36
37
38
39
40
import os
from setuptools import find_packages, setup
try:
with open(os.path.join(os.path.dirname(__file__), 'README.md'), encoding='utf-8') as f:
long_description = f.read()
except:
long_description = ''
setup(
name='pretix-cas',
version='1.3.0a',
description='Apereo CAS authentication backend for pretix',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/DataManagementLab/pretix-cas',
author='Benjamin Haettasch & TU Darmstadt BP Informatik 2019/20 Group 45',
author_email='benjamin.haettasch@cs.tu-darmstadt.de',
license='Apache Software License',
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Environment :: Web Environment',
'Development Status :: 5 - Production/Stable',
],
install_requires=['python-cas>=1.5.0', 'Django>=4.0'],
packages=find_packages(exclude=['tests', 'tests.*']),
include_package_data=True,
entry_points="""
[pretix.plugin]
pretix_cas=pretix_cas:PretixPluginMeta
""",
)