-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (46 loc) · 1.41 KB
/
pyproject.toml
File metadata and controls
52 lines (46 loc) · 1.41 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
[build-system]
# Pin poetry-core to a version that emits Core Metadata <= 2.3 to satisfy older
# publishers/validators (e.g., pypa/gh-action-pypi-publish@v1.8.x).
# Newer poetry-core versions (>=1.9) generate Metadata-Version: 2.4 which some
# validators may not recognize yet.
requires = ["poetry-core<1.9"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "fibermorph"
version = "1.0.1"
description = "Interactive toolkit for analyzing hair fiber morphology with GUI and CLI"
authors = ["tinalasisi <tina.lasisi@gmail.com>"]
license = "LICENSE"
readme = "README.md"
homepage = "https://github.com/lasisilab/fibermorph"
repository = "https://github.com/lasisilab/fibermorph"
[tool.poetry.dependencies]
python = ">=3.10,<3.13"
numpy = "^1.26.4"
joblib = "^1.3.2"
pandas = "^2.2.0"
pillow = "^10.2.0"
requests = "^2.31.0"
scipy = "^1.8"
tqdm = "^4.66.1"
scikit-image = "^0.22.0"
rawpy = {version = "^0.19.0", optional = true}
matplotlib = {version = "^3.8.2", optional = true}
streamlit = {version = "^1.28.0", optional = true}
[tool.poetry.scripts]
fibermorph = "fibermorph.cli:main"
fibermorph-gui = "fibermorph.gui.launcher:main"
[tool.poetry.group.dev.dependencies]
pytest = "^8.0.0"
pytest-cov = "^4.1.0"
mypy = "^1.8.0"
black = "^24.2.0"
flake8 = "^7.0.0"
isort = "^5.13.0"
pre-commit = "^3.6.0"
[tool.cibuildwheel]
build-frontend = "build"
[tool.poetry.extras]
raw = ["rawpy"]
viz = ["matplotlib"]
gui = ["streamlit"]