-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (35 loc) · 767 Bytes
/
pyproject.toml
File metadata and controls
40 lines (35 loc) · 767 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
39
40
[project]
name = "devcli"
version = "3.0.1"
description = "A command line tool to create command line tools"
authors = [{ name = "Marco Valtas" }]
readme = "README.rst"
license = "MIT"
requires-python = ">=3.13"
dependencies = [
"toml>=0.10.2,<0.11",
"mock>=5.1.0,<6",
"typer>=0.15.1",
"rich>=13.9.4,<14",
"requests>=2.31.0,<3",
"pyfakefs>=5.7.2,<6",
"black==25.1.0",
"pytest==8.3.4",
]
[project.scripts]
devcli = "devcli.core.cli:cli"
[dependency-groups]
dev = ["pytest>=7.0.0"]
[tool.hatch.build.targets.sdist]
include = [
"devcli/**/*",
"pyproject.toml",
]
[tool.hatch.build.targets.wheel]
include = [
"devcli/**/*",
"pyproject.toml",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"