-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpyproject.toml
71 lines (57 loc) · 1.59 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
[tool.poetry]
name = "pihole5-list-tool"
version = "0.6.4"
description = "A tool for quickly and easily bulk adding allowlists and ad/blocklists to a Pi-hole 5 installation"
authors = ["jesse <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/jessedp/pihole5-list-tool"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Utilities",
"Topic :: Internet :: Name Service (DNS)",
]
keywords = [
"pihole",
"pi-hole",
"blacklist",
"blocklist",
"whitelist",
"allowlist",
"adlist",
]
packages = [{ include = "ph5lt" }]
[tool.poetry.scripts]
pihole5-list-tool = 'ph5lt.app:main'
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/jessedp/pihole5-list-tool/issues"
"Source Code" = "https://github.com/jessedp/pihole5-list-tool"
[tool.poetry.dependencies]
python = "^3.8"
requests = "^2.31.0"
inquirerpy = "^0.3.4"
ansicolors = "^1.1.8"
terminaltables = "^3.1.10"
[tool.poetry.group.dev.dependencies]
black = "^23.11.0"
pylint = "^3.0.2"
coverage = "^7.3.2"
pytest = "^7.4.3"
pytest-subprocess = "^1.5.0"
[[tool.poetry.source]]
name = "testpypi"
url = "https://test.pypi.org/legacy/"
priority = "primary"
[[tool.poetry.source]]
name = "PyPI"
priority = "primary"
[tool.black]
target-version = ["py37"]
[tool.semantic_release]
version_variable = ["ph5lt/banner.py:__version__", "pyproject.toml:version"]
build_command = "pip install poetry && poetry build"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"