|
| 1 | +[tool.poetry] |
| 2 | +name = 'django-auth-adfs' |
| 3 | +version = '1.4.0' # Remember to also change __init__.py version |
| 4 | +description = 'A Django authentication backend for Microsoft ADFS and AzureAD' |
| 5 | +authors = [ 'Joris Beckers <[email protected]>'] |
| 6 | +maintainers = [ 'Jonas Krüger Svensson <[email protected]>', 'Sondre Lillebø Gundersen <[email protected]>'] |
| 7 | +license = 'BSD' |
| 8 | +homepage = 'https://github.com/snok/django-auth-adfs' |
| 9 | +repository = 'https://github.com/snok/django-auth-adfs' |
| 10 | +documentation = 'https://django-auth-adfs.readthedocs.io/en/latest' |
| 11 | +keywords = ['django', 'authentication', 'adfs', 'azure', 'ad', 'oauth2'] |
| 12 | +readme = 'README.rst' |
| 13 | +classifiers=[ |
| 14 | + 'Environment :: Web Environment', |
| 15 | + 'Framework :: Django :: 1.11', |
| 16 | + 'Framework :: Django :: 2.0', |
| 17 | + 'Framework :: Django :: 2.1', |
| 18 | + 'Framework :: Django :: 2.2', |
| 19 | + 'Framework :: Django :: 3.0', |
| 20 | + 'Framework :: Django :: 3.1', |
| 21 | + 'Intended Audience :: Developers', |
| 22 | + 'Intended Audience :: End Users/Desktop', |
| 23 | + 'Operating System :: OS Independent', |
| 24 | + 'License :: OSI Approved :: BSD License', |
| 25 | + 'Programming Language :: Python', |
| 26 | + 'Programming Language :: Python :: 3', |
| 27 | + 'Programming Language :: Python :: 3.5', |
| 28 | + 'Programming Language :: Python :: 3.6', |
| 29 | + 'Programming Language :: Python :: 3.7', |
| 30 | + 'Programming Language :: Python :: 3.8', |
| 31 | + 'Programming Language :: Python :: 3.9', |
| 32 | + 'Topic :: Internet :: WWW/HTTP', |
| 33 | + 'Topic :: Internet :: WWW/HTTP :: Dynamic Content', |
| 34 | + 'Topic :: Internet :: WWW/HTTP :: WSGI', |
| 35 | + 'Topic :: Software Development :: Libraries :: Application Frameworks', |
| 36 | + 'Topic :: Software Development :: Libraries :: Python Modules', |
| 37 | + 'Development Status :: 5 - Production/Stable', |
| 38 | +] |
| 39 | +include = ['CHANGELOG.rst'] |
| 40 | + |
| 41 | +[tool.poetry.dependencies] |
| 42 | +python = '^3' |
| 43 | +django = ' ^3.0 ||^2.0 || ^1.1' |
| 44 | +requests = '^1 || ^2' |
| 45 | +cryptography = '^1.7 || ^2.0 || ^3.0' |
| 46 | +PyJWT = "^1.0.1 || ^2.0" |
| 47 | + |
| 48 | +[tool.poetry.dev-dependencies] |
| 49 | +responses = '*' |
| 50 | +mock = '*' |
| 51 | +coverage = '*' |
| 52 | +tox = '*' |
| 53 | +djangorestframework = '*' |
| 54 | +PyJWT = "^1.0.1" # Even though PyJWT>=2 works for auth-adfs, the utils for our tests does not. |
0 commit comments