-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
41 lines (36 loc) · 948 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
[tool.poetry]
name = "tsd-api-client"
version = "0.0.0" # managed by poetry-dynamic-versioning
description = "A client for the TSD REST API"
authors = [
"Leon du Toit <[email protected]>",
]
maintainers = [
"Eirik Haatveit <[email protected]>",
"Milen Kouylekov <[email protected]>",
"Torjus Håkestad <[email protected]>",
]
license = "BSD-3-Clause"
readme = "README.md"
repository = "https://github.com/unioslo/tsd-api-client"
packages = [{include = "tsdapiclient"}]
[tool.poetry.scripts]
tacl = "tsdapiclient.tacl:cli"
[tool.poetry.dependencies]
python = "^3.8"
requests = "*"
click = ">=8"
PyYAML = "*"
humanfriendly = "*"
libnacl = "*"
rich = "*"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.4"
[tool.poetry-dynamic-versioning]
enable = true
vcs = "git"
style = "pep440"
bump = true
[build-system]
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning>=0.20.0"]
build-backend = "poetry_dynamic_versioning.backend"