-
Notifications
You must be signed in to change notification settings - Fork 9
/
pyproject.toml
55 lines (48 loc) · 996 Bytes
/
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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "rossum_api"
version = "0.19.0"
license = {text = "MIT"}
readme = "README.md"
requires-python = ">= 3.8"
dependencies = [
"aiofiles",
"httpx",
"dacite",
]
[project.optional-dependencies]
tests = [
"codecov",
"pytest",
"pytest-asyncio",
"pytest-httpx",
"pytest-cov",
"ruff",
"types-aiofiles",
]
[tools.setuptools]
include-package-data = true
packages = ["find"]
[tool.pytest.ini_options]
minversion = "7.0"
pythonpath = [
"."
]
[tool.black]
line-length = 99
target-version = ["py38"]
include = '\.pyi?$'
[tool.isort]
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
line_length = 100
ensure_newline_before_comments = true
[tool.semantic_release]
upload_to_repository = false
branch = "main"
version_variables = ["rossum_api/__init__.py:__version__"]
version_toml = ["pyproject.toml:project.version"]