-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
87 lines (81 loc) · 2.35 KB
/
pyproject.toml
File metadata and controls
87 lines (81 loc) · 2.35 KB
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
[project]
name = "elapi"
version = "2.4.11"
description = "elAPI is a powerful, extensible API client for eLabFTW."
authors = [{ name = "Alexander Haller, Mahadi Xion", email = "elabftw@uni-heidelberg.de" }]
requires-python = ">=3.11.0,<4"
readme = "README.md"
license = "AGPL-3.0-only"
maintainers = [{ name = "Mahadi Xion", email = "mahadi.xion@urz.uni-heidelberg.de" }]
keywords = [
"elabftw",
"api",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Framework :: AnyIO",
"Framework :: AsyncIO",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Natural Language :: English",
"Operating System :: OS Independent",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Systems Administration",
"Topic :: Utilities",
]
dependencies = [
"dynaconf>=3.2.13,<4",
"httpx[http2]>=0.28.1,<0.29",
"httpx-auth>=0.23.1,<0.24",
"rich>=13.8.0,<14",
"typer[all]>=0.9.0,<0.10",
"pyyaml==6.0.2",
"mistune==3.1.3",
"click>=8.1.8,<8.2",
"httpx-limiter>=0.3.0,<0.4.0",
"httpx-aiohttp>=0.1.12,<0.2",
"pydantic>=2.12.3",
"urllib3>=2.6.3",
# Used by yagmail, but added explicitly here to get an important security update
"aiohttp>=3.13.5",
# Used by httpx-aiohttp, but added explicitly here to get an important security update
]
license-files = [
"LICENSE",
"src/elapi/_vendor/*/LICENSE"
]
[project.optional-dependencies]
uhd-urz = [
"python-dateutil>=2.9.0.post0,<3",
"tenacity>=9.1.2,<10",
"uvloop>=0.22.1,<0.23",
]
mail = [
"jinja2>=3.1.6,<3.2",
"nameparser>=1.1.3",
"yagmail>=0.15.293,<0.16",
]
[project.urls]
Homepage = "https://www.urz.uni-heidelberg.de/de/service-katalog/software-und-anwendungen/elabftw"
Repository = "https://github.com/uhd-urz/elAPI.git"
Issues = "https://github.com/uhd-urz/elAPI/issues"
Changelog = "https://github.com/uhd-urz/elAPI/blob/main/CHANGELOG.md"
[project.scripts]
elapi = "elapi.cli.elapi:app"
[build-system]
requires = ["uv_build>=0.7.19,<0.8.0"]
build-backend = "uv_build"
[dependency-groups]
dev = [
"mypy>=1.18.2",
"pip>=25.1.1", # vendy requires pip
"ptpython>=3.0.23,<4",
"vendy>=0.0.3",
]
[tool.vendy]
target = 'src/elapi/'
# vendy will auto-crate src/elapi/_vendor
packages = [
"haggis==0.14.1",
]