-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
45 lines (38 loc) · 865 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
44
45
[project]
name = "banip"
version = "1.3.0"
description = "Create a list of banned IPs for specific countries"
license = {file = "LICENSE"}
readme = {file = "README.md", content-type = "text/markdown"}
requires-python = ">=3.12"
dependencies = [
"rich>=13.9.4",
"tomli>=2.2.1",
]
authors = [
{name = "Peter Nardi", email = "[email protected]"},
]
[dependency-groups]
dev = [
"mypy>=1.13.0",
"ruff>=0.7.1",
]
[tool.ruff.lint.isort]
force-single-line = true
[tool.uv.sources]
banip = { workspace = true }
[project.scripts]
banip = "banip.app:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build]
exclude = [
".gitignore",
"global-gitignore.txt",
"Makefile",
"samples/**",
"uv.lock",
]
[tool.hatch.build.targets.wheel.force-include]
"./pyproject.toml" = "banip/pyproject.toml"