-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (39 loc) · 954 Bytes
/
Copy pathpyproject.toml
File metadata and controls
47 lines (39 loc) · 954 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
38
39
40
41
42
43
44
45
46
47
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.uv]
package = true
[project]
name = "doclify"
version = "0.2.2"
description = "AI-powered documentation generator for Python projects"
readme = "README.md"
requires-python = ">=3.10"
license = {text = "GNU AFFERO GENERAL PUBLIC LICENSE"}
authors = [
{name = "Hema Kalyan", email = "mhemakalyan@gmail.com"}
]
dependencies = [
"click",
"pathspec>=1.0.3",
"pyyaml",
"rich",
"python-dotenv",
"groq>=1.1.1"
]
[project.optional-dependencies]
dev = [
"pytest>=9.0.2",
"twine>=6.2.0",
]
[project.urls]
Repository = "https://github.com/KalyanM45/Doclify"
Issues = "https://github.com/KalyanM45/Doclify/issues"
[project.scripts]
doclify = "doclify.pipelines.supervisor:cli"
[tool.setuptools]
[tool.setuptools.packages.find]
where = ["."]
include = ["doclify*"]
[tool.setuptools.package-data]
"doclify" = ["resources/*.gitignore"]