forked from tschm/cradle
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (50 loc) · 1.33 KB
/
pyproject.toml
File metadata and controls
58 lines (50 loc) · 1.33 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
# Project metadata and package information
[project]
name = "qCradle"
version = "0.0.0"
description = "CLI to create repos"
readme = "README.md"
authors = [{ name = "Thomas Schmelzer", email = "thomas.schmelzer@gmail.com" }]
requires-python = ">=3.10"
dependencies = [
"typer>=0.9.0",
"copier>=9.8.0",
"rich>=13.7.0",
"pyyaml==6.0.3"
]
# URLs related to the project
[project.urls]
repository = "https://github.com/tschm/cradle"
# Optional dependencies for development
[project.optional-dependencies]
dev = [
"pytest-cov==7.0.0",
"pytest==9.0.2",
"pre-commit==4.5.0",
"pytest-mock==3.15.1",
"marimo==0.18.3"
]
# Entry points for command-line scripts
[project.scripts]
qcradle = "cradle.cli:main"
# Build system configuration
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
# Hatch wheel build configuration
[tool.hatch.build.targets.wheel]
packages = ["src/cradle"]
# Hatch build configuration - files to include in the package
[tool.hatch.build]
include = [
"LICENSE", # Ensure the LICENSE file is included in your package
"README.md",
"demo.png",
"src/cradle",
]
# Deptry dependency checker configuration
[tool.deptry]
# see https://deptry.com/usage/#pep-621-dev-dependency-groups
pep621_dev_dependency_groups = ["dev"]
[tool.deptry.package_module_name_map]
pyyaml = ["yaml"]