-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
42 lines (36 loc) · 1 KB
/
pyproject.toml
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
[tool.black]
line-length = 100
target-version = ['py39']
[tool.pylint]
max-line-length = 100
disable = ["C0114", "C0116"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "docgpt"
version = "0.1.2"
description = "Auto-generate documentation for code."
readme = "README.md"
authors = [
{ name = "Amir Abdi" },
]
license = { file = "LICENSE" }
requires-python = ">=3.6"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
]
dependencies = [
"openai>=0.25.0,<1.0",
"jsonargparse[signatures]",
]
[project.urls]
Homepage = "https://github.com/amir-abdi/docgpt"
Documentation = "https://github.com/amir-abdi/docgpt"
"Bug Tracker" = "https://github.com/amir-abdi/docgpt/issues"
Discussions = "https://github.com/amir-abdi/docgpt/issues"
Changelog = "https://github.com/amir-abdi/docgpt/blob/main/CHANGELOG.md"
[project.scripts]
docgpt = "docgpt.main:cli"