-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
37 lines (33 loc) · 961 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
[tool.poetry]
name = "hyperon-das-atomdb"
version = "0.8.10"
description = "Persistence layer for Distributed AtomSpace"
authors = ["marcocapozzoli <[email protected]>"]
readme = "README.md"
packages = [{include = "hyperon_das_atomdb"}]
[tool.poetry.urls]
"Code" = "https://github.com/singnet/das-atom-db"
"Bug Tracker" = "https://github.com/singnet/das-atom-db/issues"
"Releases" = "https://github.com/singnet/das-atom-db/releases"
[tool.poetry.dependencies]
python = "^3.10"
redis = "^5.0.0"
pymongo = "^4.5.0"
python-dotenv = "^1.0.0"
mongomock = "^4.1.2"
setuptools = "^70.2.0"
hyperon-das-atomdb-cpp = "0.0.2"
[tool.poetry.group.dev.dependencies]
flake8 = "^6.1.0"
pylint = "^3.2.6"
mypy = "^1.10.1"
isort = "^5.12.0"
black = "^23.7.0"
pytest = "^7.4.2"
pytest-cov = "^4.1.0"
flake8-pyproject = "^1.2.3"
pre-commit = "^3.5.0"
hyperon-das-atomdb-cpp = "0.0.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"