-
Notifications
You must be signed in to change notification settings - Fork 9
/
pyproject.toml
62 lines (57 loc) · 1.31 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
52
53
54
55
56
57
58
59
60
61
62
[tool.poetry]
name = "virtool-core"
version = "0.0.0"
description = "Core utilities for Virtool."
authors = [
"Ian Boyes",
"Blake Smith",
"Aman Monga",
"Ryan Fang",
"Markus Swoveland",
"Reece Hoffmann",
"Matt Curtis",
"Christine Wong Chong",
"Bryce Davidson"
]
license = "MIT"
readme = "README.md"
repository = "https://github.com/virtool/virtool-core"
classifiers = [
"Topic :: Software Development :: Libraries",
"Programming Language :: Python :: 3.12",
]
packages = [
{ include = "virtool_core" },
{ include = "virtool_core/py.typed" }
]
[tool.poetry.dependencies]
python = "~3.12"
aiofiles = "0.7.0"
arrow = "^1.2.2"
dictdiffer = "0.8.1"
pydantic = "^1.8.2"
motor = "^3.1.2"
motor-types = "^1.0.0b3"
structlog = "^23.1.0"
enum-tools = "^0.11.0"
redis = {extras = ["hiredis"], version = "^5.0.6"}
orjson = "^3.10.1"
email-validator = "^2.1.1"
[tool.poetry.group.dev.dependencies]
mypy = "^1.5.1"
syrupy = "^2.3.0"
pytest = "^7.4.4"
pytest-asyncio = "^0.23.6"
pytest-mock = "^3.6.1"
sphinx-autobuild = "^2024.4.16"
ruff = "^0.4.2"
types-aiofiles = "^23.2.0.20240403"
piccolo-theme = "^0.22.0"
sphinx = "^5.0.0"
[tool.pytest.ini_options]
asyncio_mode = "auto"
[tool.ruff.lint]
select = ["ALL"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"