-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
35 lines (34 loc) · 1006 Bytes
/
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
from setuptools import setup
setup(
name='ctlsettings',
version='0.4.3',
author='Columbia University Center for Teaching and Learning',
author_email='[email protected]',
url='https://github.com/ccnmtl/ctlsettings',
description='Columbia CTL common Django base settings',
long_description='common settings we use across all our projects',
long_description_content_type='text/markdown',
install_requires=[
'django-cas-ng',
'django-debug-toolbar',
'coverage',
'django-smoketest',
'django-extensions',
'django-statsd-mozilla',
'sentry-sdk',
'django-storages',
'boto3',
'requests',
'statsd',
'gunicorn',
'django-impersonate',
],
scripts=[],
license='GPL-3.0-or-later',
platforms=['any'],
packages=['ctlsettings', 'ctlsettings.templates'],
package_data={
'ctlsettings': ['*.py'],
'ctlsettings.templates': ['*/*.html'],
},
)