-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (33 loc) · 810 Bytes
/
Copy pathpyproject.toml
File metadata and controls
39 lines (33 loc) · 810 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
29
30
31
32
33
34
35
36
37
38
39
[project]
name = "abertpy"
version = "0.6.0"
description = ""
authors = [{ name = "Valentin Kivachuk Burda", email = "vk18496@gmail.com" }]
license = { text = "GPL3" }
readme = "README.md"
requires-python = ">=3.12,<4.0"
dependencies = [
"pydantic>=2,<3",
"pydantic-settings>=2.14.2,<3.0.0",
"aiohttp>=3.13.1,<4.0.0",
"loguru>=0.7.3,<0.8.0",
"asyncstdlib>=3.13.1,<4.0.0",
"backoff>=2.2.1,<3.0.0",
"requests>=2.32.5,<3.0.0",
]
[project.scripts]
abertpy = "abertpy.args:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["abertpy"]
[tool.hatch.build.targets.sdist]
only-include = ["abertpy"]
[dependency-groups]
dev = [
"pyright>=1.1.411",
"ruff>=0.15.22",
]
[tool.pyright]
include = ["abertpy"]