-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (50 loc) · 1.73 KB
/
pyproject.toml
File metadata and controls
56 lines (50 loc) · 1.73 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
[project]
name = "vip-client"
description = "Python client to use the Virtual Imaging Platform (VIP) through its RESTful API."
license = "CECILL-B"
version = "0.1.9"
authors = [
{ name="Gaël Vila", email="gael.vila@creatis.insa-lyon.fr" },
]
maintainers = [
{ name="Gaël Vila", email="gael.vila@creatis.insa-lyon.fr" },
{ name="Axel Bonnet", email="axel.bonnet@creatis.insa-lyon.fr" },
]
readme = "doc/pypi.md"
requires-python = ">=3.7"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"License :: CeCILL-B Free Software License Agreement (CECILL-B)",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Scientific/Engineering :: Image Processing",
"Topic :: Scientific/Engineering :: Medical Science Apps.",
]
dependencies = ["requests", "girder-client"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
# Only build files inside src/vip_client
[tool.hatch.build.targets.wheel]
packages = ["src/vip_client"]
[tool.pytest.ini_options]
pythonpath = [
"src"
]
[project.urls]
Homepage = "https://vip.creatis.insa-lyon.fr"
Source = "https://github.com/virtual-imaging-platform/VIP-python-client"
Tracker = "https://github.com/virtual-imaging-platform/VIP-python-client/issues"
[[tool.uv.index]]
name = "testpypi"
url = "https://test.pypi.org/simple/"
publish-url = "https://test.pypi.org/legacy/"
explicit = true
[[tool.uv.index]]
name = "nexus-snapshots"
url = "https://vip.creatis.insa-lyon.fr:9007/nexus/repository/pypi-snapshot/simple/"
publish-url = "https://vip.creatis.insa-lyon.fr:9007/nexus/repository/pypi-snapshot/"
explicit = true