-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (26 loc) · 936 Bytes
/
pyproject.toml
File metadata and controls
33 lines (26 loc) · 936 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
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "dir2md"
version = "1.2.2"
description = "Generate a Markdown blueprint: directory tree + optional file contents (token-optimized, ICEBERG preset)"
readme = "README.md"
authors = [{name = "Flamehaven", email = "info@flamehaven.space"}]
license = {text = "MIT"}
requires-python = ">=3.9"
dependencies = ["pathspec>=0.12.0", 'tomli>=2.0.0; python_version < "3.11"']
[project.urls]
Homepage = "https://github.com/Flamehaven/dir2md"
Repository = "https://github.com/Flamehaven/dir2md"
Documentation = "https://github.com/Flamehaven/dir2md#readme"
[project.scripts]
dir2md = "dir2md.cli:main"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
dir2md = ["defaults.json"]
[tool.pytest.ini_options]
pythonpath = ["src"]