-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
45 lines (40 loc) · 1.3 KB
/
pyproject.toml
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
[build-system]
requires = ['hatchling']
build-backend = 'hatchling.build'
[project]
name = 'edrn.auth'
dynamic = ['version']
requires-python = '>=3.11'
dependencies = [
'django > 4, < 5',
'wagtail > 5, < 6'
]
authors = [
{name = 'Sean Kelly', email='[email protected]'}
]
description = 'Wagtail-based authentication and authorization for the Early Detection Research Network'
readme = 'README.md'
keywords = ['authentication', 'authorization', 'wagtail', 'cancer', 'nih', 'nci']
classifiers = [
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Django :: 4',
'Framework :: Wagtail :: 5',
'Intended Audience :: Healthcare Industry',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Software Development :: Libraries :: Python Modules'
]
license = {file = 'LICENSE.md'}
[project.urls]
Homepage = 'https://github.com/EDRN/edrn.auth'
Issues = 'https://github.com/EDRN/edrn.auth/issues'
[tool.hatch.version]
path = 'src/edrn/auth/VERSION.txt'
pattern = '(?P<version>.+)'
[tool.hatch.build.targets.wheel]
packages = ['src/edrn']