-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (40 loc) · 1.08 KB
/
pyproject.toml
File metadata and controls
47 lines (40 loc) · 1.08 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
[project]
name = "EventEllipsometer"
version = "0.1.0"
description = "Event Ellipsometer: Event-based Mueller-Matrix Video Imaging"
authors = [
{ name = "Ryota Maeda", email = "42407614+elerac@users.noreply.github.com" }
]
dependencies = [
"opencv-python>=4.10.0.84",
"matplotlib>=3.9.1",
"h5py>=3.11.0",
"nanobind>=2.2.0",
"tqdm>=4.64.1",
"typing-extensions>=4.9.0",
"numpy>=1.26.3",
"ipykernel>=6.29.5",
"black>=24.4.2",
"scipy>=1.13.1",
"sympy>=1.13.2",
"polanalyser @ git+https://github.com/elerac/polanalyser.git@next",
]
readme = "README.md"
requires-python = ">= 3.8"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.rye]
managed = true
dev-dependencies = []
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["src/eventellipsometer"]
[project.scripts]
build_cpp = "build_cpp:main"
record = "eventellipsometry.event_record:main"
raw2npz = "eventellipsometry.event_io:main"
# [[tool.rye.sources]]
# name = "pytorch"
# url = "https://download.pytorch.org/whl/cpu"