-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (49 loc) · 1.58 KB
/
pyproject.toml
File metadata and controls
59 lines (49 loc) · 1.58 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
[build-system]
requires = ["hatchling", "hatch-vcs", "hatch-fancy-pypi-readme"]
build-backend = "hatchling.build"
[project]
name = "dev-code"
dynamic = ["version", "readme"]
description = "Project · editor · container — simplified"
requires-python = ">=3.10"
authors = [
{name = "Nasser Alansari", email = "dacrystal@users.noreply.github.com"},
]
dependencies = ["click>=8.0"]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
[project.urls]
"Homepage" = "https://dacrystal.github.io/dev-code/"
"Source Code" = "https://github.com/dacrystal/dev-code"
"Issues" = "https://github.com/dacrystal/dev-code/issues"
[project.scripts]
devcode = "devcode:cli"
[tool.hatch.version]
source = "vcs"
[tool.hatch.build.targets.wheel]
force-include = {"src/devcode.py" = "devcode.py", "src/templates" = "dev_code_templates"}
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["src"]
[dependency-groups]
test = ["pytest>=7", "pytest-cov>=4"]
dev = [
"tox>=4",
"pyyaml>=6",
"git-cliff>=2",
"ruff>=0.15.10",
"mypy>=1.20.0",
]
[tool.hatch.metadata.hooks.fancy-pypi-readme]
content-type = "text/markdown"
[[tool.hatch.metadata.hooks.fancy-pypi-readme.fragments]]
path = "README.md"
[[tool.hatch.metadata.hooks.fancy-pypi-readme.substitutions]]
pattern = '\(assets/'
replacement = "(https://raw.githubusercontent.com/dacrystal/dev-code/main/assets/"