-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
48 lines (42 loc) · 1020 Bytes
/
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
[tool.poetry]
name = "neo4j_arrow"
version = "0.6.1"
description = "Neo4j Arrow Client Library"
authors = ["Connectors Team <connectors@neo4j.com>"]
readme = "README.md"
packages = [{ include = "neo4j_arrow", from = "src" }]
[tool.poetry.dependencies]
python = ">=3.9, <4"
pyarrow = ">=10, <18"
numpy = "<2"
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.3"
tox = "^4.11.3"
mypy = "^1.7.0"
black = "^23.11.0"
pre-commit = "^3.5.0"
flake8 = "^6.1.0"
flake8-bugbear = "^23.9.16"
pep8-naming = "^0.13.3"
flake8-builtins = "^2.2.0"
flake8-docstrings = "^1.7.0"
darglint = "^1.8.1"
flake8-isort = "^6.1.1"
flake8-spellcheck = "^0.28.0"
flake8-comprehensions = "^3.14.0"
flake8-bandit = "^4.1.1"
testcontainers = "^3.7.1"
neo4j = "^5.15.0"
pandas = "^2.2.3"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
pythonpath = ["src"]
[tool.black]
line-length = 120
target-version = ['py39']
[tool.isort]
profile = "black"
multi_line_output = 3
py_version = 39