-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.cfg
39 lines (38 loc) · 1.22 KB
/
setup.cfg
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
[metadata]
name = cg-django-uaa
version = attr: uaa_client.VERSION
description = A cloud.gov UAA authentication backend for Django
long_description = file: README.md, CHANGELOG.md, LICENSE.md
long_description_content_type = text/markdown
url = https://github.com/cloud-gov/cg-django-uaa
license = CC0 1.0
classifiers =
Development Status :: 3 - Alpha
Environment :: Web Environment
Framework :: Django
Framework :: Django :: 4.0
Framework :: Django :: 4.1
Framework :: Django :: 4.2
Intended Audience :: Developers
License :: CC0 1.0 Universal (CC0 1.0) Public Domain Dedication
Operating System :: OS Independent
Programming Language :: Python
Topic :: Software Development :: Libraries :: Python Modules
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Topic :: Utilities
[options]
zip_safe = False
include_package_data = True
package_dir =
uaa_client = uaa_client
packages = find:
install_requires =
django>=4.0,<5.0
PyJWT>=2.4.0
requests>=2.11.0