-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (32 loc) · 746 Bytes
/
pyproject.toml
File metadata and controls
37 lines (32 loc) · 746 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 = "docs-to-md"
version = "0.1.2"
description = "Convert readthedocs to markdown"
authors = [{ name = "ackness", email = "ackness8@gmail.com" }]
dependencies = [
"httpx>=0.27.2",
"openai>=1.50.0",
"lxml>=5.3.0",
"requests>=2.32.3",
"tqdm>=4.66.5",
"click>=8.1.7",
"setuptools>=75.1.0",
]
readme = "README.md"
requires-python = ">= 3.10"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project.scripts]
d2m = "docs_to_md.main:main"
[tool.rye]
managed = true
dev-dependencies = [
"pytest>=8.3.3",
"pytest-asyncio>=0.24.0",
"pre-commit>=3.8.0",
]
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["src/docs_to_md"]