-
Notifications
You must be signed in to change notification settings - Fork 11
/
pyproject.toml
96 lines (84 loc) · 2.73 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
[tool.poetry]
name = "nodestream"
version = "0.13.3"
description = "A Fast, Declarative ETL for Graph Databases."
license = "GPL-3.0-only"
authors = [
"Zach Probst <[email protected]>"
]
readme = "README.md"
homepage = "https://github.com/nodestream-proj/nodestream"
repository = "https://github.com/nodestream-proj/nodestream"
documentation = "https://nodestream-proj.github.io/nodestream"
keywords = ["etl", "neo4j", "declarative", "data", "kafka", "ingest"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Natural Language :: English",
"Topic :: Database"
]
packages = [ { include = "nodestream" } ]
[tool.isort]
profile = "black"
[tool.poetry.dependencies]
python = "^3.10"
pyyaml = "^6.0"
jmespath = "^1.0"
cleo = "^2.0"
python-json-logger = "^2.0"
boto3 = "^1.34.127"
confluent-kafka = "^2.5"
Jinja2 = "^3"
pandas = "^2"
pyarrow = ">=17.0.0,<19.0.0"
schema = "^0.7"
cookiecutter = "^2.0"
httpx = "^0.27"
psutil = "^6.0"
uvloop = [
{ version = ">=0.17.0,<=0.21.0", platform = "darwin"},
{ version = ">=0.17.0,<=0.21.0", platform = "linux"}
]
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.2"
black = "^24.3.0"
pyhamcrest = "^2.1.0"
isort = "^5.12.0"
pytest-cov = "^5.0.0"
pytest-asyncio = "^0.24.0"
pytest-mock = "^3.10.0"
freezegun = "^1.2.2"
moto = {version = "^5", extras = ["s3"]}
ruff = "^0.6"
pytest-snapshot = "^0.9.0"
pytest-httpx = "^0.30.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
markers = [
"integration: marks the test as an integration test (deselect with '-m \"not integration\"')",
"e2e: marks the test as an end-to-end test (deselect with '-m \"not e2e\"')",
]
[tool.poetry.scripts]
nodestream = 'nodestream.cli.application:run'
# To prevent the "builin" stuff being a special case of plugins,
# nodestream just considers itself a plugin for all of the things that are pluggable.
[tool.poetry.plugins."nodestream.plugins"]
"argument_resolvers" = "nodestream.pipeline.argument_resolvers"
"file_formats" = "nodestream.pipeline.extractors.files"
"interpretations" = "nodestream.interpreting.interpretations"
"normalizers" = "nodestream.pipeline.normalizers"
"value_providers" = "nodestream.pipeline.value_providers"
"record_formats" = "nodestream.pipeline.extractors.streams"
"stream_connectors" = "nodestream.pipeline.extractors.streams"
"commands" = "nodestream.cli.commands"
"audits" = "nodestream.project.audits"
"schema_printers" = "nodestream.schema.printers"
"databases" = "nodestream.databases.null"
[tool.ruff]
ignore = ["E501"]
target-version = "py310"