forked from aerospike-community/document-lib-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
28 lines (24 loc) · 749 Bytes
/
Copy pathpyproject.toml
File metadata and controls
28 lines (24 loc) · 749 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
[tool.poetry]
name = "document-lib-python"
version = "0.1.0"
description = "Document Library API for Python"
authors = ["Julian Nguyen <jnguyen@aerospike.com>"]
readme = "README.md"
homepage = "https://github.com/aerospike/document-lib-python"
packages = [{include = "documentapi"}]
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/aerospike/document-lib-python/issues"
[tool.poetry.dependencies]
python = ">= 3.7, < 3.10"
jsonpath-ng-aerospike = "^1.5.3"
aerospike = ">= 6.0, < 8.0"
coverage = "^6.5.0"
[tool.poetry.group.dev.dependencies]
flake8 = "^5.0.4"
build = "^0.8.0"
twine = "^4.0.1"
sphinx_rtd_theme = "^1.0.0"
sphinxcontrib-spelling = "^7.6.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"