-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (52 loc) · 2.26 KB
/
pyproject.toml
File metadata and controls
59 lines (52 loc) · 2.26 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 = ["setuptools>=61"]
build-backend = "setuptools.build_meta"
[project]
name = "pure-python-git"
version = "1.0.2"
description = "Pure-Python git reimplementation with a byte-exact in-process `ort` merge engine and no C `git` dependency. Installs `pygit`; opt-in `git` shim via `pip install pure-python-git[git]`."
readme = "README.md"
requires-python = ">=3.9"
authors = [{ name = "Ben Hsing", email = "blhsing@gmail.com" }]
license = { file = "LICENSE" }
keywords = ["git", "vcs", "version-control", "scm"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"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",
"Topic :: Software Development :: Version Control :: Git",
]
[project.urls]
Homepage = "https://github.com/blhsing/pure-python-git"
Repository = "https://github.com/blhsing/pure-python-git"
Issues = "https://github.com/blhsing/pure-python-git/issues"
"Source — companion `git` shim" = "https://github.com/blhsing/pure-python-git/tree/main/pure-python-git-shim"
[project.scripts]
# The only auto-installed entry point. The `git` drop-in is opt-in via
# `pygit install-git-shim` (see README), so installing pythongit never
# shadows a system `git` by accident.
pygit = "pythongit.cli:main"
[project.optional-dependencies]
# Opt in to the drop-in `git` command via `pip install pure-python-git[git]`.
# This pulls in `pure-python-git-shim`, whose only role is to register a `git`
# console-script that calls pythongit.cli:main. Uninstall the shim with pip
# to remove the shim without uninstalling the main package.
git = ["pure-python-git-shim>=0.1.1"]
test = ["pytest>=7"]
[tool.setuptools.packages.find]
include = ["pythongit*"]
[tool.setuptools.package-data]
pythongit = ["py.typed"]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py", "unit_*.py"]