-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
48 lines (40 loc) · 1022 Bytes
/
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
43
44
45
46
47
48
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "drdoc"
version = "0.1.0"
description = "A documentation processing tool for identifying and correcting errors in markdown, reStructuredText, and plain text files"
readme = "README.md"
requires-python = ">=3.8"
license = {file = "LICENSE"}
authors = [
{name = "Murat Keceli", email = "[email protected]"}
]
keywords = ["documentation", "markdown", "rst", "text-processing", "ai-assisted-editing"]
dependencies = [
"requests>=2.25.0",
"argparse",
]
[project.optional-dependencies]
dev = [
"pytest",
"black",
"flake8",
]
[project.scripts]
drdoc = "drdoc.drdoc:main"
[project.urls]
Homepage = "https://github.com/yourusername/drdoc"
Repository = "https://github.com/yourusername/drdoc"
[tool.setuptools]
packages = ["drdoc"]
[tool.black]
line-length = 88
target-version = ['py38']
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-ra -q"
testpaths = [
"tests",
]