-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
43 lines (36 loc) · 1.24 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
[tool.poetry]
name = "nodestream-plugin-dotenv"
version = "0.13.0"
description = "A plugin to nodestream for loading environment variables from a .env file"
authors = ["Zach Probst <Zach_Probst@intuit.com>"]
packages = [{include = "nodestream_plugin_dotenv"}]
license = "Apache 2.0"
readme = "README.md"
homepage = "https://github.com/nodestream-proj/nodestream"
repository = "https://github.com/nodestream-proj/nodestream-plugin-dotenv"
documentation = "https://nodestream-proj.github.io/nodestream-plugin-dotenv"
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.13.0"
python-dotenv = ">=0.21.0,< 2"
[tool.poetry.plugins."nodestream.plugins"]
projects = "nodestream_plugin_dotenv.plugin"
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.0"
pytest-mock = "^3.11.1"
ruff = "^0.0.284"
isort = "^5.12.0"
black = "^23.7.0"
pytest-cov = "^4.1.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"