-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
50 lines (41 loc) · 1.32 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
[tool.poetry]
name = "nodestream-plugin-meta"
version = "0.14.0"
description = "A plugin to nodestream for building a graph of the schema of the graph."
authors = ["Zach Probst <[email protected]>"]
packages = [{include = "nodestream_plugin_meta"}]
license = "Apache 2.0"
readme = "README.md"
homepage = "https://github.com/nodestream-proj/nodestream"
repository = "https://github.com/nodestream-proj/nodestream-plugin-meta"
documentation = "https://nodestream-proj.github.io/nodestream-plugin-meta"
keywords = ["etl", "neo4j", "declarative", "data", "kafka", "ingest", "nodestream"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Natural Language :: English",
"Topic :: Database"
]
[tool.poetry.dependencies]
python = "^3.10"
nodestream = "^0.14.0"
[tool.ruff]
# Allow lines to be as long as 120.
line-length = 120
[tool.isort]
profile = "black"
[tool.poetry.plugins."nodestream.plugins"]
projects = "nodestream_plugin_meta.plugin"
[tool.poetry.group.dev.dependencies]
pytest = "^8.2.0"
pytest-mock = "^3.11.1"
ruff = "^0.0.284"
isort = "^5.12.0"
black = "^23.7.0"
pytest-cov = "^4.1.0"
pytest-asyncio = "^0.24.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"