-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (28 loc) · 858 Bytes
/
pyproject.toml
File metadata and controls
33 lines (28 loc) · 858 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
[build-system]
requires = ["setuptools>=67", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "mdlm"
version = "0.2.1"
description = "CLI for markdownlm knowledge base"
readme = "README.md"
requires-python = ">=3.8"
license = { file = "LICENSE" }
authors = [ { name = "sundanc", email = "rustu@rustu.dev" } ]
dependencies = ["requests>=2.28"]
keywords = ["markdown", "cli", "knowledge-base"]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"License :: Other/Proprietary License",
"Operating System :: OS Independent",
]
[project.scripts]
mdlm = "mdlm.cli:main"
[tool.setuptools.packages.find]
where = ["."]
include = ["mdlm*"]
[project.urls]
Homepage = "https://markdownlm.com"
Repository = "https://github.com/markdownlm/cli"
Issues = "https://github.com/markdownlm/cli/issues"