-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
33 lines (27 loc) · 1.02 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
[project]
name = "gitbetter"
description = "Custom git shell to type less and commit more."
version = "4.0.1"
dependencies = ["argshell", "pathier", "morbin", "noiftimer"]
readme = "README.md"
keywords = ["git", "shell", "cli", "terminal", "commit"]
classifiers = ["Programming Language :: Python :: 3", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent"]
requires-python = ">=3.10"
[[project.authors]]
name = "Matt Manes"
email = "[email protected]"
[project.urls]
Homepage = "https://github.com/matt-manes/gitbetter"
Documentation = "https://github.com/matt-manes/gitbetter/tree/main/docs"
"Source code" = "https://github.com/matt-manes/gitbetter/tree/main/src/gitbetter"
[project.scripts]
gitbetter = "gitbetter.gitbetter:main"
[tool]
[tool.pytest.ini_options]
addopts = ["--import-mode=importlib"]
pythonpath = "src"
[tool.hatch.build.targets.sdist]
exclude = [".coverage", ".pytest_cache", ".vscode", "tests", "htmlcov", "docs", "*.md"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"