forked from eduMFA/eduMFA
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
89 lines (82 loc) · 2.6 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "edumfa"
version = "2.3.0"
requires-python = ">=3.8"
authors = [{ name = "edumfa.io", email = "[email protected]" }]
description = "eduMFA: identity, multifactor authentication (OTP), authorization, audit"
readme = { file = "README.rst", content-type = "text/x-rst" }
license = { file = "LICENSE" }
keywords = ["OTP", "two factor authentication", "management", "security"]
classifiers = [
"Framework :: Flask",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Programming Language :: Python",
"Development Status :: 5 - Production/Stable",
"Topic :: Internet",
"Topic :: Security",
"Topic :: System :: Systems Administration :: Authentication/Directory",
"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"
]
dynamic = ["dependencies"]
[project.urls]
Homepage = "https://edumfa.io/"
Documentation = "https://edumfa.readthedocs.io/"
Repository = "https://github.com/eduMFA/eduMFA.git"
Issues = "https://github.com/eduMFA/eduMFA/issues"
[project.optional-dependencies]
docs = [
"furo==2024.8.6",
"docutils==0.21.2",
"imagesize==1.4.1",
"packaging==24.1",
"pyenchant==3.2.2",
"Pygments==2.18.0",
"snowballstemmer==2.2.0",
"Sphinx==8.0.2",
"sphinxcontrib-applehelp==2.0.0",
"sphinxcontrib-devhelp==2.0.0",
"sphinxcontrib-htmlhelp==2.1.0",
"sphinxcontrib-httpdomain==1.8.1",
"sphinxcontrib-jsmath==1.0.1",
"sphinxcontrib-qthelp==2.0.0",
"sphinxcontrib-serializinghtml==2.0.0",
"sphinxcontrib-spelling==8.0.0",
"sphinx-copybutton==0.5.2",
"sphinx-inline-tabs==2023.4.21",
]
test = [
"attrs==24.2.0",
"coverage==7.6.1",
"exceptiongroup==1.2.2",
"iniconfig==2.0.0",
"mock==5.1.0",
"packaging==24.1",
"pluggy==1.5.0",
"pyparsing==3.1.4",
"pytest==8.3.3",
"pytest-cov==5.0.0",
"responses==0.25.3",
"testfixtures==8.3.0",
"tomli==2.0.2",
"types-PyYAML==6.0.12.20240917",
]
postgres = ["psycopg2==2.9.9"]
hsm = ["PyKCS11==1.5.16"]
kerberos = ["gssapi==1.9.0"]
[project.scripts]
edumfa-manage = "edumfa.commands.manage.main:cli"
[tool.setuptools.dynamic]
dependencies = { file = "requirements.txt" }
[tool.setuptools.packages.find]
include = ["edumfa*"]
[tool.setuptools.package-data]
"edumfa" = ["translations/**/*", "static/**/*"]