-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
38 lines (31 loc) · 1.18 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
[build-system]
requires = ["setuptools>=64", "setuptools-scm>=8"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools_scm]
local_scheme = "no-local-version" # disables local versioning such as adding commit hash etc to enable upload to pypi
[project]
name = "links_connect"
authors = [{ name = "Softstream", email = "[email protected]" }]
description = "a collection of utilities for working links extensions derivatives"
requires-python = ">=3.11"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
readme = "readme.md"
dynamic = ["version"]
# installs default dependencies when running pip install ".[test]"
[project.optional-dependencies]
test = ["pytest", "pytest-mock", "pytest-sugar", "pytest-cov"]
robot = ["robotframework>=7", "robotbackgroundlogger"]
# "ouch-connect>=5.0.1rc3",
[tool.pytest.ini_options]
testpaths = ["./tests"]
cache_dir = "./target/.pytest_cache"
log_cli = true
log_cli_level = "DEBUG"
log_cli_format = "%(asctime)s [%(levelname)8s] %(message)s (%(filename)s:%(lineno)s)"
log_cli_date_format = "%Y-%m-%d %H:%M:%S.%f"