-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (48 loc) · 1.13 KB
/
pyproject.toml
File metadata and controls
53 lines (48 loc) · 1.13 KB
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
45
46
47
48
49
50
51
52
53
[project]
name = 'gpnmgr'
version = '0.0.1'
description = 'GPN team and access management'
readme = 'README.md'
requires-python = '>=3.13'
authors = [
{ name = 'promasu' },
]
classifiers = [
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.13',
'Programming Language :: Python :: 3.14',
]
dependencies = [
'Django==6.0.5',
'django-auditlog==3.4.1',
'django-bootstrap5==26.2',
'django-qr-code==4.2.0',
'django-localflavor==5.0',
'gunicorn==26.0.0',
'psycopg2-binary==2.9.12',
'Authlib==1.7.2',
'requests==2.33.1',
'python-dateutil==2.9.0.post0',
'ldap3==2.9.1',
]
[project.optional-dependencies]
tests = [
'coverage==7.13.5',
'django-stubs==6.0.4',
'mypy==2.0.0',
'pylint==4.0.5',
'pylint-django==2.7.0',
'types-requests~=2.33.0',
]
docs = [
'mkdocs==1.6.1',
'mkdocs-material==9.7.6'
]
[project.urls]
repository = 'https://github.com/entropia/gpnmgr'
[tool.setuptools.packages.find]
where=['src']
[tool.setuptools.package-data]
gpnmgr = ['py.typed']