-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
43 lines (38 loc) · 1.09 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 = "hyperon-das"
version = "0.9.14"
description = "Query Engine API for Distributed AtomSpace"
authors = ["marcocapozzoli <[email protected]>"]
readme = "README.md"
packages = [
{include = "hyperon_das"},
]
[tool.poetry.urls]
"Documentation" = "https://singnet.github.io/das-query-engine"
"Code" = "https://github.com/singnet/das-query-engine"
"Bug Tracker" = "https://github.com/singnet/das-query-engine/issues"
"Releases" = "https://github.com/singnet/das-query-engine/releases"
[tool.poetry.dependencies]
python = "^3.10"
hyperon-das-atomdb = "0.8.10"
requests = "^2.31.0"
grpcio = "^1.62.2"
google = "^3.0.0"
protobuf = "^4.25.3"
[tool.poetry.group.dev.dependencies]
isort = "^5.12.0"
flake8 = "^6.1.0"
black = "^23.9.1"
pytest = "^7.4.2"
pytest-cov = "^4.1.0"
flake8-pyproject = "^1.2.3"
pre-commit = "^3.5.0"
poetry-plugin-export = "^1.6.0"
[tool.poetry.group.doc.dependencies]
pymdown-extensions = "^10.8.1"
mkdocs-material = "^9.5.13"
mkdocstrings = "^0.24.1"
mkdocstrings-python = "^1.8.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"