forked from rossumai/rossum-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
54 lines (47 loc) · 991 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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "rossum_api"
version = "1.0.0"
license = {text = "MIT"}
readme = "README.md"
dependencies = [
"aiofiles",
"httpx",
"dacite",
]
[project.optional-dependencies]
tests = [
"codecov",
"mock", # Needed for Python 3.7 because unittest.mock there doesn't support AsyncMock,
"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 = ["py37"]
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]
version_variable = "setup.py:__version__"
upload_to_repository = false
branch = "main"