forked from mongodb/snooty-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
56 lines (50 loc) · 1.12 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
[build-system]
requires = ["flit"]
build-backend = "flit.buildapi"
[tool.flit.metadata]
module = "snooty"
author = "MongoDB, inc."
author-email = "[email protected]"
home-page = "https://github.com/mongodb/snooty-parser"
classifiers = ["License :: OSI Approved :: Apache Software License"]
requires-python = "~= 3.7"
requires = [
"pymongo[srv,tls] >= 3.11.1, < 4",
"docutils >= 0.16, < 0.18",
"watchdog ~= 1.0",
"requests ~= 2.24",
"tomli ~= 2.0",
"pyyaml ~= 5.3",
"typing-extensions >= 3.7",
"python-jsonrpc-server ~= 0.3.4",
"fett ~= 0.3.2",
"networkx >= 2.4, < 3",
"docopt ~= 0.6.2"
]
[tool.flit.metadata.requires-extra]
dev = [
"black ~= 22.3.0",
"pyflakes ~= 2.4",
"mypy == 0.960",
"pyinstaller ~= 4.10",
"isort ~= 5.10.1",
"types-requests ~= 2.26.1"
]
test = [
"pytest ~= 7.1.1",
"pytest-cov ~= 3.0.0"
]
[tool.flit.scripts]
snooty = "snooty.main:main"
[tool.isort]
profile = "black"
multi_line_output = 3
[tool.mypy]
python_version = "3.7"
mypy_path = "stubs"
strict_equality = true
[tool.pytest.ini_options]
testpaths = [
"snooty",
"tools",
]