-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
49 lines (41 loc) · 1015 Bytes
/
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
[build-system]
requires = ["hatchling", "toml"]
build-backend = "hatchling.build"
[project]
name = "spectpsftoolbox"
version = "0.1.0"
authors = [
{ name="Luke Polson", email="lukepolson@outlook.com" },
]
description = "Library for creation of point spread functions"
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"numpy>=1.24.2",
"torch>=1.10.2",
"fft-conv-pytorch>=1.2.0",
]
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["src/spectpsftoolbox"]
[project.urls]
"Homepage" = "https://github.com/qurit/SPECTPSFToolbox"
"Bug Tracker" = "https://github.com/qurit/SPECTPSFToolbox/issues"
[project.optional-dependencies]
doc = [
"toml",
"sphinx~=6.2.1",
"myst-parser",
"furo",
"nbsphinx",
"sphinx-autoapi~=3.0.0",
"ipykernel",
"pydata-sphinx-theme",
"sphinx-design"
]