-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
75 lines (64 loc) · 1.47 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
[project]
name = "SnowSignal"
dynamic = ["version"]
dependencies = [
"configargparse>=1.7",
"psutil>=5.9",
]
requires-python = ">=3.11"
authors = [
{name = "Ivan Finch", email = "[email protected]"},
]
maintainers = [
{name = "Ivan Finch", email = "[email protected]"},
]
description = "UDP Broadcast Relay"
readme = "README.md"
#license = {file = "LICENSE"}
keywords = ["UDP", "UDP broadcast", "docker swarm", "epics", "pvaccess",]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: BSD License",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python",
"Topic :: System :: Networking",
"Typing :: Typed"
]
[project.urls]
Repository = "https://github.com/ISISNeutronMuon/SnowSignal"
[project.optional-dependencies]
test = [
"scapy~=2.0",
"ruff>0.6",
"coverage>=7.6"
]
dist = [
"build>=1.2",
"twine>=5.1",
]
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[tool.coverage.run]
source = ["."]
omit = ["./tests/locust/"]
[tool.coverage.report]
show_missing = true
[tool.coverage.xml]
output = "coverage.xml"
[tool.hatch.build.hooks.vcs]
version-file = "_version.py"
[tool.hatch.build.targets.wheel]
packages = ["snowsignal/"]
[tool.hatch.version]
source = "vcs"
[tool.ruff]
# Allow lines to be as long as 120.
line-length = 120
[tool.ruff.lint]
extend-select = [
"UP", # pyupgrade
"I", # isort
]