-
Notifications
You must be signed in to change notification settings - Fork 57
/
pyproject.toml
62 lines (54 loc) · 1.18 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
[tool.poetry]
name = "terminusdb-client"
version = "10.2.6"
description = "Python client for Terminus DB"
authors = ["TerminusDB group"]
license = "Apache Software License"
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.8.0,<3.12"
requests = "^2.31.0"
numpy = ">= 1.13.0"
numpydoc = "*"
pandas = ">= 0.23.0"
typeguard = "~2.13.3"
tqdm = "*"
click = ">=8.0"
shed = "*"
[tool.poetry.dev-dependencies]
pytest = ">= 3"
pytest-cov = "*"
pytest-mock = "*"
pytest-xdist = "*"
flake8 = "*"
[tool.poetry.scripts]
tdbpy = "terminusdb_client.scripts.scripts:tdbpy"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[[tool.pydoc-markdown.loaders]]
type = "python"
search_path = [ "./terminusdb_client" ]
[tool.pydoc-markdown.renderer]
type = "gitbook"
[tool.pytest.ini_options]
addopts = [
"-p no:warnings",
"--doctest-modules",
"--import-mode=importlib",
]
doctest_optionflags = [
"NORMALIZE_WHITESPACE",
"ELLIPSIS"
]
junit_family="legacy"
testpaths = [
"terminusdb_client/tests/",
]
[tool.isort]
profile = "black"
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
combine_as_imports = true
line_length = 88