-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
41 lines (37 loc) · 1.15 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
import os
from setuptools import setup
README = """
See the README on `GitHub
<https://github.com/uw-it-aca/django-blti>`_.
"""
version_path = 'blti/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='django-blti',
version=VERSION,
packages=['blti'],
include_package_data=True,
install_requires=[
'Django>=3.2,<5',
'oauthlib',
'cryptography',
'mock',
],
license='Apache License, Version 2.0',
description='A Django Application on which to build IMS BLTI Tool Providers',
long_description=README,
url='https://github.com/uw-it-aca/django-blti',
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',
],
)