-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (47 loc) · 1.14 KB
/
pyproject.toml
File metadata and controls
53 lines (47 loc) · 1.14 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
[build-system]
requires = ["setuptools>=65.0"]
build-backend = "setuptools.build_meta"
[project]
name = "OpenPostbud"
version = "0.0.1"
authors = [
{ name="Mathias Gammelgaard", email="ghbm@aarhus.dk" },
]
description = "A package containing the OpenPostbud application."
readme = "README.md"
requires-python = ">=3.11"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
]
dependencies = [
"cryptography == 43.*",
"SQLAlchemy == 2.*",
"nicegui == 3.3.*",
"python-dotenv == 1.*",
"python_serviceplatformen >= 3.1, < 4.0",
"passlib == 1.7.*",
"PyJWT == 2.10.*",
"docxtpl>=0.20.2",
]
[project.urls]
"Homepage" = "https://github.com/itk-dev-rpa/OpenPostbud"
"Bug Tracker" = "https://github.com/itk-dev-rpa/OpenPostbud/issues"
[project.optional-dependencies]
dev = [
"pylint",
"flake8",
"selenium"
]
[project.scripts]
OpenPostbud = "OpenPostbud.__main__:main"
[tool.pylint]
good-names = ["OpenPostbud"]
allowed-redefined-builtins = ["id"]
disable = [
"line-too-long",
"too-many-locals",
"too-few-public-methods",
"logging-fstring-interpolation",
"duplicate-code"
]