-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (32 loc) · 1.24 KB
/
Copy pathpyproject.toml
File metadata and controls
35 lines (32 loc) · 1.24 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
[build-system]
requires = ["setuptools>=45", "wheel", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "doc-fetch"
version = "2.6.0"
description = "Dynamic documentation fetching CLI that converts entire documentation sites to single markdown files for AI/LLM consumption"
readme = "README.md"
authors = [{name = "AlphaTechini", email = "rehobothokoibu@gmail.com"}]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Documentation",
"Topic :: Software Development :: Documentation",
"Topic :: Utilities",
]
keywords = ["documentation", "ai", "llm", "markdown", "crawler", "security"]
requires-python = ">=3.8"
dependencies = []
[project.urls]
Homepage = "https://doc-fetch.vercel.app/"
Repository = "https://github.com/AlphaTechini/doc-fetch"
Documentation = "https://doc-fetch.vercel.app/"
[project.scripts]
doc-fetch = "doc_fetch.cli:main"