This repository was archived by the owner on Sep 6, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpyproject.toml
More file actions
77 lines (67 loc) · 1.24 KB
/
pyproject.toml
File metadata and controls
77 lines (67 loc) · 1.24 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
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
76
77
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "docker-harpoon"
dynamic = ["version"]
description = "Opinionated wrapper around docker"
readme = "README.rst"
license = "MIT"
requires-python = ">= 3.8"
authors = [
{ name = "Stephen Moore", email = "stephen@delfick.com" },
]
keywords = [
"docker",
]
dependencies = [
"delfick_project==0.8.0",
"docker==7.1.0",
"humanize",
"rainbow_logging_handler==2.2.2",
"ruyaml==0.91.0",
]
[project.optional-dependencies]
tests = [
"noseOfYeti[black]==2.4.8",
"psutil==5.6.3",
"pytest>=7.2.0",
]
[project.scripts]
harpoon = "harpoon.executor:main"
[project.urls]
Homepage = "https://github.com/delfick/harpoon"
[tool.hatch.version]
path = "harpoon/version.py"
[tool.hatch.build.targets.sdist]
include = [
"/harpoon",
]
[tool.hatch.build.targets.wheel]
include = [
"/harpoon",
]
[tool.black]
line-length = 100
include = '\.py$'
exclude = '''
/(
\.git
| \.tox
| dist
| tools/\.python
)/
'''
[tool.isort]
profile = "black"
skip_glob = [
".git/*",
".tox/*",
"dist/*",
"tools/.*",
]
[tool.mypy]
plugins = 'noseOfYeti.plugins.mypy'
ignore_missing_imports = true
show_column_numbers = true
allow_redefinition = true