-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
34 lines (28 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
34
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "gitgather"
version = "0.0.2"
authors = [
{ name = "claysauruswrecks", email = "[email protected]" },
]
description = "A simple tool to gather source code from a local repo or folder into a single file for LLM context windows."
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
[project.optional-dependencies]
test = ["build", "pytest >=8.1.1", "pytest-cov", "twine"]
[project.scripts]
gitgather = "gitgather.__main__:main"
[project.urls]
Homepage = "https://github.com/claysauruswrecks/gitgather"
Issues = "https://github.com/claysauruswrecks/gitgather/issues"
[tool.hatch.build.targets.wheel]
src-dir = "src" # Specify the source directory for your package
[tool.hatch.build.targets.sdist]
src-dir = "src" # Specify the source directory for your package