forked from kaygdev/octdata4python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (34 loc) · 1.22 KB
/
pyproject.toml
File metadata and controls
38 lines (34 loc) · 1.22 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
[project]
name = "octdata4python"
version = "0.1.2"
description = "Python bindings for reading and parsing E2E/SDB OCT files using a high-performance C++ backend"
readme = "README.md"
requires-python = ">=3.10"
license = { text = "AGPL-3.0-only" }
authors = [ { name = "Faizan Hemotra" } ]
keywords = [ "OCT", "optical coherence tomography", "Heidelberg", "sdb", "e2e", "medical imaging", "C++", "Python" ]
dependencies = [ "numpy>1.26.0" ]
classifiers = [
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Programming Language :: C++",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering"
]
[project.urls]
Homepage = "https://github.com/fzhem/octdata4python"
Documentation = "https://github.com/fzhem/octdata4python/blob/main/README.md"
Repository = "https://github.com/fzhem/octdata4python"
Issues = "https://github.com/fzhem/octdata4python/issues"
[dependency-groups]
dev = [
"build",
"auditwheel; sys_platform == 'linux'",
"delvewheel; sys_platform == 'win32'"
]
[tool.scikit-build]
sdist.exclude = [".venv/*"]
wheel.packages = ["octdata4python"]
[build-system]
requires = ["scikit-build-core>=0.11.3"]
build-backend = "scikit_build_core.build"