-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (37 loc) · 1012 Bytes
/
pyproject.toml
File metadata and controls
42 lines (37 loc) · 1012 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
40
41
42
[project]
name = "tsdbapi"
version = "0.4.0"
description = "Interact with the KOF Time Series Database API"
readme = "README.md"
authors = [
{ name = "Oliver Müller", email = "omueller@kof.ethz.ch" }
]
requires-python = ">=3.14"
dependencies = [
"polars>=1.37.1",
"requests-oauthlib>=2.0.0",
"werkzeug>=3.1.3",
]
license = "MIT"
license-files = ["LICENSE"]
[project.urls]
Homepage = "https://github.com/KOF-ch/tsdbapi-py"
Issues = "https://github.com/KOF-ch/tsdbapi-py/issues"
[build-system]
requires = ["uv_build>=0.9.9,<0.10.0"]
build-backend = "uv_build"
[[tool.uv.index]]
name = "kof"
url = "https://registry.kof.ethz.ch/repository/kpy/simple/"
publish-url = "https://registry.kof.ethz.ch/repository/kpy/"
explicit = true
[[tool.uv.index]]
name = "testpypi"
url = "https://test.pypi.org/simple/"
publish-url = "https://test.pypi.org/legacy/"
explicit = true
[[tool.uv.index]]
name = "pypi"
url = "https://pypi.org/simple/"
publish-url = "https://upload.pypi.org/legacy/"
explicit = true