-
Notifications
You must be signed in to change notification settings - Fork 132
/
pyproject.toml
119 lines (93 loc) · 2.44 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
[tool.poetry]
name = "doorstop"
version = "3.0b16"
description = "Requirements management using version control."
license = "LGPLv3"
authors = ["Jace Browning <[email protected]>"]
readme = "README.md"
exclude = ["**/tests/**"]
homepage = "https://pypi.org/project/Doorstop"
documentation = "https://doorstop.readthedocs.io"
repository = "https://github.com/doorstop-dev/doorstop"
keywords = [
"requirements-management",
"version-control",
"documentation",
"traceability",
"markdown",
"certification",
"html",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Documentation",
"Topic :: Text Editors :: Documentation",
"Topic :: Text Processing :: Markup",
]
[tool.poetry.dependencies]
python = "<3.13,>=3.9"
pyyaml = "^6.0"
markdown = "^3.3.3"
bottle = "~0.12.25"
requests = "^2.0"
python-frontmatter = "^1.0"
python-markdown-math = "~0.6"
plantuml-markdown = "^3.4.2"
six = "*" # fixes https://github.com/dougn/python-plantuml/issues/11
openpyxl = ">=3.1.2"
verchew = "^3.4.2"
[tool.poetry.dev-dependencies]
# Formatters
black = "^24.3"
isort = "^5.12"
# Linters
mypy = ">=1.1.1"
pydocstyle = "*"
pylint = "~3.2.0"
types-markdown = "*"
types-pyyaml = "*"
types-requests = "*"
types-setuptools = "*"
# Testing
pytest = "^6.2.5"
pytest-cov = "*"
pytest-expecter = "*"
pytest-sugar = "*"
WebTest = "3.0.0"
diff-cover = "8.0.3"
# Reports
coveragespace = "^4.0"
# Documentation
mkdocs = "^1.5"
pygments = "*"
# Tooling
pyinstaller = "*"
sniffer = "*"
macfsevents = { version = "*", platform = "darwin" }
pync = { version = "*", platform = "darwin" }
rope = "^0.14.0"
[tool.poetry.scripts]
doorstop = "doorstop.cli.main:main"
doorstop-gui = "doorstop.gui.main:main"
doorstop-server = "doorstop.server.main:main"
[tool.black]
quiet = true
[tool.isort]
profile = "black"
[tool.pytest.ini_options]
# log_cli = true
# log_cli_level = "WARNING"
log_file = "pytest.log"
log_file_level = "DEBUG"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"