forked from palindromicity/dotifi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
38 lines (33 loc) · 992 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
[tool.poetry]
name = "dotifi"
version = "0.2.1"
license = "Apache-2.0"
description = "Generate DOT files and images from Apache Nifi Flows"
authors = ["Otto Fowler <[email protected]>"]
maintainers = ["palindromicity <[email protected]>"]
readme = "README.md"
homepage = "https://github.com/palindromicity/dotifi"
repository = "https://github.com/palindromicity/dotifi"
keywords = ["nifi", "graphviz", "pygraphvis", "nipyapi"]
include = ["configurations/sample.yaml"]
[tool.poetry.scripts]
dotifi = "dotifi.dotifi:process"
[tool.poetry.urls]
issues = "https://github.com/palindromicity/dotifi/issues"
[tool.poetry.dependencies]
python = "^3.7"
pygraphviz = "^1.5"
nipyapi = "^0.15.0"
pyyaml = "^5.3.1"
confuse = "^1.1.0"
jsonpickle = "^1.4.1"
wheel = "^0.34.2"
[tool.poetry.dev-dependencies]
pytest = "^4.6"
docker = "^4.2.1"
pytest-mock = "^3.1.0"
mock = "^4.0.2"
pre-commit = "^2.4.0"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"