-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
57 lines (46 loc) · 1.09 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
[tool.poetry]
name = "sphinx-needs-enterprise"
version = "1.0.1"
description = ""
authors = ["team useblocks"]
license = "BSL 1.1"
readme = "README.rst"
repository = "http://github.com/useblocks/sphinx-needs-enterprise"
documentation = "https://useblocks.com/sphinx-needs-enterprise"
[tool.poetry.dependencies]
python = ">3.7,<4.0"
sphinx = ">=4.2"
sphinx-needs = ">=1.0.1"
licensing = ">=0.31"
requests = ">=2"
jinja2 = ">=2"
jira2markdown = ">=0.1"
m2r2 = ">=0.2"
click = ">=7.0"
sphinxcontrib-programoutput = ">=0.17"
azure-devops = "^7"
elasticsearch = ">=7.15"
tqdm = ">=4.40"
openpyxl = ">=3.0.0"
[tool.poetry.scripts]
sne = "sphinx_needs_enterprise.scripts.cli:cli"
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.3"
# test dependencies
sphinx-testing = ">=1.0"
# lint dependences
flake8 = "^3.9.0"
pep8-naming = "^0.11.1"
# formatting dependencies
black = "^22"
isort = "^5.7.0"
flake8-isort = "^4.0.0"
flake8-black = "^0.2.1"
typed_ast = "^1.5.0"
[tool.black]
line-length = 120
[tool.isort]
profile = "black"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.core.masonry.api"