-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (33 loc) · 1011 Bytes
/
pyproject.toml
File metadata and controls
38 lines (33 loc) · 1011 Bytes
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
[project]
name = "python-common-utility"
description = "Common utility packages for Python projects"
authors = [
{ name = "Ferenc Nandor Janky & Attila Gombos", email = "info@effective-range.com" }
]
maintainers = [
{ name = "Ferenc Nandor Janky & Attila Gombos", email = "info@effective-range.com" }
]
dependencies = [
"requests",
"pydantic",
"jinja2",
"netifaces",
"python-context-logger @ git+https://github.com/EffectiveRange/python-context-logger.git@latest",
]
dynamic = ["version"]
[tool.setuptools]
package-dir = {"" = "."}
packages = ["common_utility", "test_utility"]
[tool.setuptools.package-data]
common_utility = ["py.typed"]
test_utility = ["py.typed"]
[build-system]
requires = ["setuptools>=61", "setuptools_scm"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
version_scheme = "guess-next-dev"
local_scheme = "node-and-date"
[tool.pytest.ini_options]
addopts = ["--verbose", "--capture=no"]
python_files = ["*Test.py"]
python_classes = ["*Test"]