-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
57 lines (52 loc) · 1.63 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
#!/usr/bin/env python
import os
from setuptools import setup
README = """
See the README on `GitHub
<https://github.com/uw-it-aca/canvas-analytics>`_.
"""
version_path = 'data_aggregator/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)))
setup(
name='canvas-analytics',
version=VERSION,
packages=['data_aggregator'],
include_package_data=True,
install_requires = [
'Django~=4.2',
'UW-RestClients-Core~=1.4',
'UW-RestClients-SWS~=2.4',
'UW-RestClients-PWS~=2.1',
'UW-RestClients-Canvas>=1.2.15,<2',
'UW-Django-SAML2~=1.8',
'django-webpack-loader~=0.7',
'djangorestframework~=3.12',
'uw-gcs-clients~=1.0',
'boto3~=1.17',
'google-cloud-storage~=1.37',
'google-api-core~=1.26',
'pandas~=1.1',
'urllib3~=1.25',
'pymssql~=2.3',
'lxml==4.9.4',
'xmlsec==1.3.13',
'numpy<2.0'
],
license='Apache License, Version 2.0',
description='Collects data about UW Canvas usage',
long_description=README,
url='https://github.com/uw-it-aca/canvas-analytics',
author = "UW-IT T&LS",
author_email = "[email protected]",
classifiers=[
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python',
],
)