-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
30 lines (24 loc) · 772 Bytes
/
pyproject.toml
File metadata and controls
30 lines (24 loc) · 772 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
[project]
name = "py-docstrings"
version = "0.1.0"
description = "Automatically generate NumPy-style docstrings"
authors = [
{ name = "Nimish Purohit", email = "nimishpurohitn@gmail.com" },
]
readme = "README.md"
license = "MIT"
requires-python = ">=3.9"
dependencies = ["click", "libcst", "pathspec"]
keywords = ["docstring", "documentation", "cli", "libcst"]
classifiers = [
"Programming Language :: Python :: 3",
"Intended Audience :: Developers",
"Topic :: Software Development :: Documentation",
]
[project.optional-dependencies]
dev = ["pytest"]
[project.scripts]
docgen = "docgen:main"
[project.urls]
Homepage = "https://github.com/Nimish-4/py-docstrings"
Repository = "https://github.com/Nimish-4/py-docstrings"