forked from 2i2c-org/infrastructure
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (29 loc) · 842 Bytes
/
pyproject.toml
File metadata and controls
38 lines (29 loc) · 842 Bytes
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
[build-system]
requires = ["hatchling==1.27.*", "hatch-requirements-txt==0.4.1"]
build-backend = "hatchling.build"
[project]
name = "2i2c-deployer"
description = "Deploy JupyterHubs for the 2i2c Infrastructure"
version = "0.0.1"
readme = "README.md"
license = "BSD-3-Clause"
requires-python = ">=3.13"
dynamic = ["dependencies", "optional-dependencies"]
[tool.hatch.metadata.hooks.requirements_txt]
files = ["requirements.txt"]
[tool.hatch.metadata.hooks.requirements_txt.optional-dependencies]
dev = ["dev-requirements.txt"]
[project.scripts]
deployer = "deployer.__main__:main"
[tool.hatch.build.targets.wheel]
packages = ["deployer"]
[tool.isort]
profile = "black"
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = [
"./tests",
]
[tool.codespell]
skip = '.git,*.pdf,*.svg,*.secret.*,*.key'
ignore-words-list = 'aks'