-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
51 lines (44 loc) · 1.33 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
44
45
46
47
48
49
50
51
[tool.poetry]
name = "kvault"
# This version field is not being used. The version field is dynamically updated as below
version = "0.0.0"
description = "Simple Miniature key-value datastore"
authors = ["BrianLusina <12752833+BrianLusina@users.noreply.github.com>"]
license = "MIT"
readme = "README.md"
keywords = ["kvault", "key-value-datastore", "key-value"]
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
]
[tool.poetry.dependencies]
python = "^3.10"
gevent = ">=23.7,<25.0"
loguru = "^0.7.0"
[tool.poetry.group.dev.dependencies]
pylint = ">=2.17.5,<4.0.0"
pytest = ">=7.4,<9.0"
black = ">=23.7,<25.0"
pre-commit = ">=3.3.3,<5.0.0"
python-dotenv = "^1.0.0"
pytest-cov = ">=4.1,<7.0"
mypy = "^1.5.1"
flake8 = ">=6.1,<8.0"
[tool.setuptools.dynamic]
version = { attr = "kvault.__version__" }
# Reference: https://mypy.readthedocs.io/en/stable/index.html
[tool.mypy]
strict_equality = true
[[tool.mypy.overrides]]
module = "gevent.*"
ignore_missing_imports = true
# reference: https://github.com/mtkennerly/poetry-dynamic-versioning
[tool.poetry-dynamic-versioning]
enable = true
vcs = "git"
style = "semver"
latest-tag = true
[build-system]
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning"]
build-backend = "poetry_dynamic_versioning.backend"