-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
68 lines (63 loc) · 2.09 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
# Copyright 2021 UW-IT, University of Washington
# SPDX-License-Identifier: Apache-2.0
import os
from setuptools import setup
README = """
See the README on `GitHub
<https://github.com/uw-it-aca/service-endorsement>`_.
"""
# The VERSION file is created by travis-ci, based on the tag name
version_path = 'endorsement/VERSION'
VERSION = open(os.path.join(os.path.dirname(__file__), version_path)).read()
VERSION = VERSION.replace("\n", "")
# allow setup.py to be run from any path
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
url = "https://github.com/uw-it-aca/service-endorsement"
setup(
name='ServiceEndorsement',
version=VERSION,
packages=['endorsement'],
author="UW-IT AXDD",
author_email="[email protected]",
include_package_data=True,
install_requires=[
'Django~=3.2',
'djangorestframework==3.15.1',
'ordereddict',
'simplejson',
'django-webpack-loader>=1.0,<2.0',
'django-userservice<4.0',
'urllib3~=1.26',
'unittest2',
'pytz',
'psycopg2>=2.8,<2.9',
'lxml~=4.9.1',
'xmlsec==1.3.13',
'uw-memcached-clients~=1.0.5',
'UW-RestClients-Core~=1.3.3',
'UW-Restclients-PWS==2.0.2',
'UW-RestClients-GWS~=2.0.1',
'UW-RestClients-UWNetID~=1.1.2',
'UW-RestClients-Django-Utils~=2.1.5',
'UW-RestClients-ITBill~=0.1',
'UW-RestClients-MSCA~=0.1',
'Django-Safe-EmailBackend~=1.2',
'UW-Django-SAML2>=1.3.8,<2.0',
'django-pyscss',
'Django-SupportTools~=3.5',
'Django-Persistent-Message',
'django_client_logger~=2.0',
],
license='Apache License, Version 2.0',
description=('App mangaging University of Washington Endorsed Services'),
long_description=README,
url=url,
classifiers=[
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python',
],
)