-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
87 lines (73 loc) · 2.07 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "issue_expander"
version = "0.1.13.dev0"
authors = [{name = "Adam Wolf", email = "[email protected]"}]
license = {text = "MIT"}
description = "Expand GitHub issue references into Markdown links"
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Environment :: Console",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: MIT License",
"Topic :: Text Processing :: Markup :: Markdown",
"Topic :: Utilities",
]
requires-python = ">=3.7"
dependencies = [
"Click",
"certifi",
]
dynamic = ["readme"]
[project.optional-dependencies]
dev = [
"tox",
"pre-commit",
"pytest",
"coverage[toml]",
"cogapp",
"scriv"
]
[project.urls]
Homepage = "https://www.github.com/adamwolf/issue-expander"
Issues = "https://www.github.com/adamwolf/issue-expander/issues"
"Source code" = "https://www.github.com/adamwolf/issue-expander"
Changelog = "https://www.github.com/adamwolf/issue-expander/blob/main/CHANGELOG.md"
[tool.setuptools.dynamic]
readme = {file = ["README.md"], content-type = "text/markdown"}
[project.scripts]
issue-expander = "issue_expander.expander:cli"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]
[tool.black]
line-length = 108
[tool.coverage.run]
parallel = true
branch = true
source = ["issue_expander"]
omit = ["src/issue_expander/__main__.py"]
[tool.coverage.paths]
source = ["src", ".tox/py*/**/site-packages"]
[tool.coverage.report]
show_missing = true
skip_empty = true
fail_under = 100
[tool.pytest.ini_options]
addopts = [
"--import-mode=importlib",
]
pythonpath = "src"
[tool.scriv]
format = "md"
# flake8 config is in tox.ini, as it can't yet be here