-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
58 lines (52 loc) · 1.76 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
[tool.poetry]
name = "elapi"
version = "2.3.0"
description = "elAPI is a powerful, extensible API client for eLabFTW."
authors = [
"Alexander Haller, Mahadi Xion <[email protected]>",
]
maintainers = [
"Mahadi Xion <[email protected]>",
]
readme = "README.md"
homepage = "https://www.urz.uni-heidelberg.de/en/service-catalogue/software-and-applications/elabftw"
repository = "https://github.com/uhd-urz/elAPI/"
license = "AGPL-3.0-only"
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",
]
[project.urls]
Changelog = "https://github.com/uhd-urz/elAPI/blob/main/CHANGELOG.md"
[tool.poetry.scripts]
elapi = "elapi.cli.elapi:app"
[tool.poetry.dependencies]
python = "^3.9.0"
dynaconf = "^3.2.0"
httpx = "^0.24.1"
httpx-auth = "^0.17.0"
rich = "^13.8.0" # typer already depends on rich. We define rich here to use the latest version of rich
typer = { extras = ["all"], version = "^0.9.0" }
pyyaml = "^6.0.1"
mistune = "^3.0.2"
h2 = "^4.1.0"
tenacity = { version = "^9.0.0", optional = true }
python-dateutil = { version = "^2.9.0.post0", optional = true }
uvloop = { version = "^0.20.0", optional = true }
[tool.poetry.extras]
uhd-urz = ["python-dateutil", "tenacity", "uvloop"]
[tool.poetry.group.dev.dependencies]
ptpython = "^3.0.23"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"