-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpyproject.toml
69 lines (61 loc) · 1.84 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
[tool.poetry]
name = "neo4j-runway"
version = "0.14.0"
description = "A Python library that contains tools for data discovery, data model generation and ingestion for the Neo4j graph database."
authors = ["Alex Gilmore", "Jason Booth", "Dan Bukowski"]
license = "Apache License, Version 2.0"
readme = "README.md"
keywords = ["graph", "neo4j", "data model"]
classifiers = [
"Development Status :: 4 - Beta",
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
"Programming Language :: Python :: 3",
"Topic :: Database",
]
exclude = ["tests/*", "images/*", "test.ipynb", "data/", "Makefile", "scripts/*", "notebooks/*"]
[[tool.poetry.packages]]
include = "neo4j_runway"
[tool.poetry.dependencies]
graphviz = "^0.20.1"
instructor = "1.5.2"
ipython = "^8.24.0"
neo4j = "^5.19.0"
nest_asyncio = "^1.6.0"
numpy = "^1.26.3"
openai = "^1.12.0"
pandas = "^2.0.3"
pydantic = "^2.6.1"
python = "^3.10"
pyyaml = "^6.0.1"
regex = "~2024"
tabulate = "^0.9.0"
[tool.poetry.group.dev.dependencies]
coverage = "^7.4.3"
ipykernel = "^6.29.5"
mypy = "^1.10.0"
nbconvert= "^7.16.4"
pre-commit = { version = "^3.6.2", python = "^3.10" }
pytest = "^8.3.2"
pytest-mock = "^3.12.0"
python-dotenv = "^1.0.1"
ruff = "^0.3.0"
toml = "^0.10.2"
types-PyYAML = "^6.0.12.20240724"
[tool.mypy]
strict = true
ignore_missing_imports = true
allow_subclassing_any = true
disallow_untyped_calls = false
exclude = ["docs", "tests", "scripts", "neo4j_runway/code_generation/generate_ingest.py", "neo4j_runway/llm/base.py"]
[tool.ruff]
target-version = "py310"
show-fixes = true
[tool.coverage.paths]
source = ["neo4j_runway"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"