-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (29 loc) · 872 Bytes
/
pyproject.toml
File metadata and controls
33 lines (29 loc) · 872 Bytes
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
[tool.poetry]
name = "graph-garden"
version = "0.1.2"
description = "Python library for managing ArangoDB instance"
authors = ["Roman Inflianskas <infroma@gmail.com>"]
license = "Apache-2.0"
readme = "README.md"
homepage = "https://github.com/ldtoolkit/graph-garden"
repository = "https://github.com/ldtoolkit/graph-garden"
keywords = ["arangodb"]
classifiers = [
"Topic :: Database",
]
[tool.poetry.scripts]
graph-garden = "graph_garden.cli:app"
[tool.poetry.dependencies]
python = "^3.7"
typer = "^0.3.2"
circus = "^0.16.1"
python-arango = "^6.0.0"
psutil = "^5.7.2"
pySmartDL = "^1.3.3"
beautifulsoup4 = "^4.9.1"
appdirs = "^1.4.4"
[tool.poetry.dev-dependencies]
ipython = "^7.18.1"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"