-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
50 lines (43 loc) · 1.08 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
[project]
name = "obelisk-py"
description = "The one Obelisk client to rule them all"
readme = "README.md"
requires-python = ">=3.9"
dependencies = [
"ruff>=0.9.6",
"httpx>=0.28.1",
"pydantic>=2.10.6",
"pytest>=8.3.5",
"pytest-asyncio>=0.25.3",
]
authors = [
{ name="Stef Pletinck", email="Stef.Pletinck@ugent.be"},
{ name="Pieter Moens", email="Pieter.Moens@ugent.be"},
]
dynamic = ["version"]
license-files = [
"LICENSE"
]
[project.urls]
source = "https://github.com/predict-idlab/obelisk-python"
documentation = "https://predict-idlab.github.io/obelisk-python/"
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[[tool.uv.index]]
name = "pypi"
url = "https://pypi.org/simple/"
publish-url = "https://upload.pypi.org/legacy/"
[[tool.uv.index]]
name = "testpypi"
url = "https://test.pypi.org/simple/"
publish-url = "https://test.pypi.org/legacy/"
[tool.hatch.version]
source = "vcs"
[dependency-groups]
dev = [
"numpydoc>=1.8.0",
"sphinx>=7.4.7",
]
[tool.hatch.build.targets.wheel]
packages = ["src/obelisk"]