-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (30 loc) · 1.05 KB
/
pyproject.toml
File metadata and controls
35 lines (30 loc) · 1.05 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
[project]
name = "python-hello"
description = "A service advertizer/discovery protocol library using ZeroMQ"
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 = [
"pyzmq @ git+https://github.com/EffectiveRange/pyzmq.git@v27.1.0+drafts1",
"python-context-logger @ git+https://github.com/EffectiveRange/python-context-logger.git@latest",
"python-common-utility @ git+https://github.com/EffectiveRange/python-common-utility.git@latest"
]
dynamic = ["version"]
[tool.setuptools]
package-dir = { "" = "." }
packages = ["hello", "examples"]
[tool.setuptools.package-data]
hello = ["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]
addopts = ["--verbose", "--capture=no"]
python_files = ["*Test.py"]
python_classes = ["*Test"]