forked from WSU-Carbon-Lab/CD-SEM
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (53 loc) · 1.39 KB
/
pyproject.toml
File metadata and controls
57 lines (53 loc) · 1.39 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
57
[project]
authors = [
{name = "Devin Grabner", email = "devin.grabner@wsu.edu"},
{name = "Harlan Heilman", email = "harlan.heilman@wsu.edu"},
{name = "Emma Vargo", email = "evargo@lbl.gov"},
{name = "Thomas Ferron", email = "tjferron@lbl.gov"},
{name = "Ricardo Ruiz", email = "ricardo.ruiz@lbl.gov"},
]
dependencies = [
"numpy",
"matplotlib",
"scipy",
"jupyter",
"tk",
"tifffile",
"scikit-image",
"opencv-python",
"seaborn>=0.13.2",
"segment-anything",
"torch>=2.6.0",
"torchvision>=0.21.0",
"torchaudio>=2.6.0",
"sam-2",
"torch-image-binarization",
"pyrefly>=0.20.2",
"pyarrow>=20.0.0",
"pyspm>=0.6.3",
]
description = "SEM image analysis"
name = "cd_sem"
readme = "README.md"
repository = "https://github.com/WSU-Carbon-Lab/CD-SEM"
requires-python = ">=3.12"
version = "0.1.2"
[build-system]
build-backend = "hatchling.build"
requires = ["hatchling"]
[tool.commitizen]
name = "cz_conventional_commits"
tag_format = "$version"
version_scheme = "pep440"
version_provider = "pep621"
update_changelog_on_bump = true
major_version_zero = true
[tool.uv.sources]
segment-anything = { git = "https://github.com/facebookresearch/segment-anything.git" }
sam-2 = { git = "https://github.com/facebookresearch/sam2.git" }
torch-image-binarization = { git = "https://github.com/nopperl/torch-image-binarization" }
[dependency-groups]
dev = [
"pyrefly>=0.20.2",
"ruff>=0.12.0",
]