-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
69 lines (62 loc) · 1.38 KB
/
pyproject.toml
File metadata and controls
69 lines (62 loc) · 1.38 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
58
59
60
61
62
63
64
65
66
67
68
69
[project]
name = "pygor"
version = "1.0"
authors = [
{ name="Simen Bruøygard", email="simen.bruoygard@pm.me" },
]
description = """A package for interacting with Igor Pro,
for internal use, for Baden-lab members
"""
readme = "README.md"
requires-python = ">=3.12"
# Uncomment classifiers if needed
# classifiers = [
# "Programming Language :: Python :: 3",
# "License :: OSI Approved :: MIT License",
# "Operating System :: OS Independent",
# ]
dependencies = [
"numpy>=2.1",
"matplotlib",
"h5py",
"pandas > 2.2.0",
"seaborn",
"scikit-learn",
"scikit-image>=0.25",
"scipy",
"dacite",
"tifffile",
"natsort",
"tqdm",
"statannotations>=0.4.4",
]
[project.optional-dependencies]
gui = [
"napari>=0.5.6",
"pyqt5>=5.15.11",
]
cellpose = [
"cellpose[gui]>=4.0.8",
]
notebook = [
"ipywidgets",
"ipykernel>=6.29.5",
"notebook>=7.3.2",
"jupyter>=1.1.1",
]
[project.urls]
Homepage = "https://github.com/simbru/pygor"
Issues = "https://github.com/simbru/pygor/issues"
[tool.uv]
package = true
dev-dependencies = [
"uv>=0.4.24",
"ruff>=0.8.0",
"igor2>=0.5.12",
]
constraint-dependencies = ["pyqt5-qt5 <=5.15.2"]
[tool.uv.sources]
# statannotations = { git = "https://github.com/getzze/statannotations/", branch = "compat-seaborn-13" }
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"