-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (34 loc) · 1 KB
/
pyproject.toml
File metadata and controls
39 lines (34 loc) · 1 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
36
37
38
39
[build-system]
requires = ["setuptools>=46.4.0.post20200518", "wheel"]
build-backend = "setuptools.build_meta"
# backend-path = ["."] # Not typically needed if setup.py is minimal and in root
[project]
name = "argmark"
version = "0.3"
description = "Convert argparse based executable scripts to markdown documents."
readme = "README.md"
requires-python = ">=3.6"
license = { file = "LICENSE" }
authors = [
{name = "Devansh Agarwal", email = "devansh.kv@gmail.com"}
]
classifiers = [
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Documentation",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
]
dependencies = [
"mdutils>=1.2.2"
]
[project.urls]
Homepage = "https://github.com/devanshkv/argmark"
[project.scripts]
argmark = "argmark.argmark:main"
[tool.uv]
managed = true
[tool.uv.sources]
argmark = { path = ".", editable = true }