-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
40 lines (34 loc) · 1.02 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
[project]
license = { file = "LICENSE" }
name = "zuercherportal_api"
version = "1.0.3"
description = "Search data within Jail database for jails that use Zuercher Portal"
readme = "README.md"
requires-python = ">=3.11"
authors = [{ name="KumpeApps LLC", email="jakumpe@kumpeapps.com" }]
classifiers = [
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
]
dependencies = [
"requests>=2.30",
"loguru>=0.7",
"dataclass_wizard"
]
[project.urls]
"Homepage" = "https://github.com/kumpeapps/zuercherportal_api"
"Source" = "https://github.com/kumpeapps/zuercherportal_api"
"Bug Reports" = "https://github.com/kumpeapps/zuercherportal_api/issues"
[build-system]
requires = ["setuptools>=74", "wheel"]
build-backend = "setuptools.build_meta"
[tool.pytest.ini_options]
addopts = "--cov=test_proj"
testpaths = ["tests"]
[tool.mypy]
mypy_path = "src"
ignore_missing_imports = true
[tool.isort]
profile = "black"
[tool.ruff.per-file-ignores]
"__init__.py" = ["E402", "F401"]