-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
43 lines (35 loc) · 1010 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
38
39
40
41
42
43
[tool.poetry]
name = "alaric"
version = "1.5.0"
description = "A simplistic yet powerful asynchronous MongoDB query engine."
authors = ["skelmis <[email protected]>"]
license = "MIT"
readme = "readme.md"
[tool.poetry.dependencies]
python = "^3.9"
redis = {extras = ["hiredis"], version = "^5.1.1", optional = true}
dnspython = "^2.7.0"
motor = "^3.6.0"
pycryptodome = "^3.21.0"
orjson = "^3.10.7"
[tool.poetry.group.dev.dependencies]
pytest = "^7.2.0"
mongomock-motor = "^0.0.13"
pytest-asyncio = "^0.20.1"
fakeredis = "^2.20.0"
black = "^24.10.0"
[project]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[project.urls]
"Issue tracker" = "https://github.com/Skelmis/Alaric/issues"
Documentation = "https://alaric.rtfd.io/"
Homepage = "https://github.com/Skelmis/Alaric"
[tool.poetry.extras]
cached = ["redis"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"