-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (48 loc) · 1.33 KB
/
pyproject.toml
File metadata and controls
55 lines (48 loc) · 1.33 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
54
55
[project]
name = "auth_backend"
description = "REST API backend for auth"
readme = "README.md"
requires-python = ">=3.11"
keywords = []
license = {text = "Proprientary"}
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
]
dynamic = ["dependencies", "optional-dependencies", "version"]
[project.urls]
Homepage = "https://git.dyakov.space/stories"
Documentation = "https://git.dyakov.space/stories/.gitea/wiki"
Repository = "https://git.dyakov.space/stories/backend"
Issues = "https://git.dyakov.space/stories/backend/issues"
Changelog = "https://git.dyakov.space/stories/backend/releases"
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
optional-dependencies = {dev = { file = ["requirements.dev.txt"] }}
version = {attr = "auth_backend.__version__"}
[tool.setuptools]
packages = ["auth_backend"]
[tool.black]
line-length = 120
target-version = ['py311']
skip-string-normalization = true
[tool.isort]
line_length = 120
multi_line_output = 3
lines_after_imports = 2
include_trailing_comma = true
[tool.pytest.ini_options]
minversion = "7.0"
python_files = "*.py"
testpaths = [
"tests"
]
pythonpath = [
"."
]
log_cli=true
log_level=0