-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
70 lines (65 loc) · 1.92 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
[build-system]
requires = ["setuptools >= 61.0", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "devicepasswords"
authors = [
{name = "Varbin the Fox"}
]
description = "Simple device password management to replace regular password for systems not capable of single sign-on. "
readme = "README.md"
requires-python = ">=3.11"
keywords = ["python", "docker", "flask", "oidc", "single-sign-on", "devicepassword"]
license = {text = "MPL-2.0"}
classifiers = [
"Development Status :: 4 - Beta",
"Framework :: Flask",
"Framework :: aiohttp",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Application",
"Topic :: Security",
"Topic :: System :: Systems Administration :: Authentication/Directory",
]
dependencies = [
"flask >= 3.0.0",
"flask-sqlalchemy",
"flask-alembic",
"python-jose[cryptography]",
"flask-session",
# Password hashing
"passlib",
"argon2-cffi",
# Database drivers
"psycopg2-binary",
"pymysql",
"pymssql",
# Server for production
"gunicorn",
"uvicorn",
"asgiref",
"aiohttp[speedups]"
]
dynamic = ["version"]
[project.optional-dependencies]
tests = [
"pytest",
]
[project.urls]
Homepage = "https://github.com/varbin/devicepasswords"
Documentation = "https://devicepasswords.readthedocs.io/"
Repository = "https://github.com/varbin/devicepasswords.git"
Issues = "https://github.com/varbin/devicepasswords/issues"
[tool.setuptools]
packages = [
"devicepasswords",
"devicepasswords.hashes",
"devicepasswords.migrations",
"devicepasswords.static",
"devicepasswords.templates",
]
[tool.setuptools_scm]