generated from uw-it-aca/django-vue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
55 lines (51 loc) · 1.65 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
import os
from setuptools import setup
README = """
See the README on `GitHub
<https://github.com/uw-it-aca/compass>`_.
"""
# The VERSION file is created by travis-ci, based on the tag name
version_path = "compass/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/compass"
setup(
name="compass",
version=VERSION,
packages=["compass"],
author="UW-IT T&LS",
author_email="[email protected]",
include_package_data=True,
install_requires=[
'django~=4.2',
'uw-memcached-clients~=1.0',
'django-user-agents',
'django-simple-history==3.1.1',
'Django-UserService~=3.2',
'Django-SupportTools~=3.6',
'Django-Persistent-Message~=1.3',
'django-storages[google]>=1.10',
'UW-RestClients-Django-Utils~=2.3',
'djangorestframework~=3.12',
'UW-RestClients-SWS~=2.4',
'UW-RestClients-GWS~=2.3',
'UW-RestClients-PWS~=2.1',
'UW-Django-SAML2~=1.8',
'urllib3~=1.25',
'django-person-client',
'python-dateutil~=2.8',
'chardet~=5.0'
],
license="Apache License, Version 2.0",
description="A application for managing student advising information.",
long_description=README,
url=url,
classifiers=[
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python",
],
)