-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (32 loc) · 778 Bytes
/
pyproject.toml
File metadata and controls
37 lines (32 loc) · 778 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
[project]
name = "foldup"
version = "0.1.1"
description = "Fold your codebase into a single Markdown file for passing to an LLM."
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
dependencies = [
"click>=8.1.7",
"pathspec>=0.12.1",
"pyyaml>=6.0.2",
"tiktoken>=0.8.0",
]
license = "MIT"
license-files = ["LICENSE"]
[project.urls]
Homepage = "https://github.com/nathanclairmonte/foldup"
Issues = "https://github.com/nathanclairmonte/foldup/issues"
[dependency-groups]
dev = [
"ruff>=0.8.2",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project.scripts]
foldup = "src.foldup.cli:main"
[tool.hatch.build]
packages = ["src"]