-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (46 loc) · 1.51 KB
/
pyproject.toml
File metadata and controls
53 lines (46 loc) · 1.51 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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "cuvis"
version = "3.5.1.0"
description = "CUVIS Python SDK."
readme = "README.md"
requires-python = ">=3.9"
license = "Apache-2.0"
authors = [
{ name = "Cubert GmbH, Ulm, Germany", email = "sdk@cubert-gmbh.com" }
]
dependencies = [
"cuvis-il>=3.5.0,<3.6.0",
"typing_extensions; python_version<'3.10'", # Only for Python 3.9
"setuptools; python_version>='3.12'" # Only for Python 3.12+
]
classifiers = [
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Scientific/Engineering :: Image Processing",
]
[project.urls]
Homepage = "https://www.cubert-hyperspectral.com/"
Repository = "https://github.com/cubert-hyperspectral/cuvis.python"
Documentation = "https://cubert-hyperspectral.github.io/cuvis.doc/"
Changelog = "https://github.com/cubert-hyperspectral/cuvis.python/releases"
Issues = "https://github.com/cubert-hyperspectral/cuvis.python/issues"
[tool.setuptools]
packages = ["cuvis"]
include-package-data = true
[tool.setuptools.package-data]
cuvis = ["git-hash.txt"]
[project.optional-dependencies]
test = [
"pytest>=7.0.0",
"pytest-timeout>=2.1.0",
"pytest-xdist>=3.0.0",
]