-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsetup.py
More file actions
81 lines (76 loc) · 2.53 KB
/
setup.py
File metadata and controls
81 lines (76 loc) · 2.53 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
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
69
70
71
72
73
74
75
76
77
78
79
80
81
# Copyright 2026 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/myuw>`_.
"""
# The VERSION file is created by travis-ci, based on the tag name
version_path = 'myuw/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/myuw"
setup(
name='MyUW',
version=VERSION,
packages=['myuw'],
author="UW-IT Student & Educational Technology Services",
author_email='aca-it@uw.edu',
include_package_data=True,
install_requires=[
'Django~=5.2',
'ordereddict',
'beautifulsoup4',
'urllib3',
'uw-memcached-clients~=1.1',
'UW-Django-SAML2~=1.8',
'django-userservice~=3.2',
'aws-message-client~=1.6',
'UW-RestClients-Core~=1.4',
'UW-RestClients-Bookstore~=1.4',
'UW-RestClients-Canvas~=1.2',
'UW-RestClients-CoDa~=1.0',
'UW-RestClients-Grad~=1.1',
'UW-RestClients-GradePage~=1.2',
'UW-RestClients-GWS~=2.3',
'UW-RestClients-HFS~=1.0',
'UW-RestClients-IASystem~=1.1',
'UW-RestClients-Libraries~=1.3',
'UW-RestClients-Mailman~=2.1',
'UW-RestClients-MyPlan~=1.3',
'UW-RestClients-PWS~=2.1',
'UW-RestClients-SWS~=2.5',
'UW-RestClients-Sdbmyuw~=1.0',
'UW-RestClients-Space~=1.2',
'UW-RestClients-Trumba~=1.4',
'UW-RestClients-UPass~=3.1',
'UW-RestClients-UWNetID~=1.1',
'Uw-Django-Oidc~=1.0',
'Django-SupportTools~=3.6',
'Django-Persistent-Message~=1.3',
'UW-RestClients-Django-Utils~=2.3',
'Django-Safe-EmailBackend~=1.2',
'django_client_logger~=3.1',
'lxml==5.3.1',
'xmlsec==1.3.14',
'nh3',
'pyyaml',
'ua-parser',
'user-agents',
'django-user-agents',
'django-webpack-loader==1.4.0',
'django-compressor',
],
license='Apache License, Version 2.0',
description=('MyUW is the portal of the University of Washington'),
long_description=README,
url=url,
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python',
],
)