forked from doorstop-dev/doorstop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
100 lines (78 loc) · 2.08 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
[tool.poetry]
name = "doorstop"
version = "2.2b5"
description = "Requirements management using version control."
license = "LGPLv3"
authors = ["Jace Browning <[email protected]>"]
readme = "README.md"
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.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Software Development :: Documentation",
"Topic :: Text Editors :: Documentation",
"Topic :: Text Processing :: Markup",
]
[tool.poetry.dependencies]
python = "^3.6"
PyYAML = "^5.1"
Markdown = "^3.3.3"
bottle = "~0.12.13"
requests = "^2.0"
python-markdown-math = "~0.6"
plantuml-markdown = "^3.4.2"
openpyxl = "^2.6"
[tool.poetry.dev-dependencies]
# Formatters
black = "=19.10b0"
isort = "=4.3.21"
# Linters
mypy = "^0.790"
pydocstyle = "*"
pylint = "~2.3.1"
# Testing
nose = "^1.3"
nose-cov = "*"
nose-capturestderr = "*"
nose-show-skipped = "*"
expecter = "*"
# Reports
coveragespace = "^4.0"
# Documentation
mkdocs = "^1.0"
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]
target-version = ["py36", "py37"]
skip-string-normalization = true
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"