-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
58 lines (44 loc) · 1.36 KB
/
pyproject.toml
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
[build-system]
requires = ["hatchling>=1.26.1", "hatch-vcs>=0.3.0"]
build-backend = "hatchling.build"
[project]
name = "startle"
description = "Instantly start a CLI from a function"
readme = "README.md"
requires-python = ">=3.10"
license = { file = "LICENSE" }
keywords = ["cli", "command line interface", "argparse"]
authors = [
{ name = "Ozan Irsoy" }
]
dynamic = ["version"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
dependencies = [ "rich" ]
[project.urls]
"Homepage" = "https://github.com/oir/startle"
[tool.hatch.version]
source = "vcs"
[tool.hatch.version.raw-options]
version_scheme = "python-simplified-semver"
local_scheme = "no-local-version"
[tool.hatch.build.hooks.vcs]
version-file = "startle/_version.py"
[tool.hatch.envs.test]
dependencies = [ "pytest", "pytest-cov", "mypy" ]
[[tool.hatch.envs.test.matrix]]
python = ["3.10", "3.11", "3.12", "3.13"]
[tool.ruff.lint]
select = ["E4", "E7", "E9", "F", "I"]
[tool.pytest.ini_options]
addopts = "--cov=startle --cov-report=term-missing --cov-report=lcov"
python_files = ["tests/*.py", "tests/**/*.py"]
[tool.coverage.run]
omit = ["startle/_version.py"]