-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
43 lines (37 loc) · 980 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "wg_tool"
dynamic = ["version"]
description = "Tool to administer wireguard VPN (server and user configs)"
authors = [{ name = "Gene C", email = "[email protected]" }]
license = "MIT"
readme = "README.rst"
keywords = []
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python",
"Programming Language :: Python :: 3.11",
]
dependencies = []
[project.urls]
Documentation = "https://github.com/gene-git/wg_tool/Docs"
Issues = "https://github.com/gene-git/wg_tool/issues"
Source = "https://github.com/gene-git/wg_tool"
[tool.hatch.version]
path = "src/wg_tool/lib/version.py"
[tool.hatch.envs.default]
# dependencies = [
# "coverage[toml]>=6.5",
# "pytest",
# ]
[[tool.hatch.envs.all.matrix]]
python = ["3.10", "3.11", "3.12"]
[tool.hatch.envs.lint]
detached = true
dependencies = [
#"black>=23.1.0",
#"mypy>=1.0.0",
#"ruff>=0.0.243",
]