generated from KemingHe/agentic-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
38 lines (34 loc) · 1.11 KB
/
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
[project]
name = "strain_seer"
version = "1.0.4"
description = "A Streamlit app for 2D strain analysis using fiducial markers, designed for analyzing material deformation from image sequences."
license = { file = "LICENSE" }
readme = "README.md"
requires-python = ">=3.12,<3.13"
authors = [
{ name = "Keming He", email = "[email protected]" }
]
keywords = ["strain", "streamlit", "analysis"]
classifiers = []
dependencies = [
"pyarrow (==19)",
"streamlit (>=1.44.0,<2.0.0)",
"streamlit-image-annotation (>=0.5.0,<0.6.0)",
"matplotlib (>=3.10.1,<4.0.0)",
"scipy (>=1.15.2,<2.0.0)",
]
[project.urls]
homepage = "https://strain-seer.streamlit.app"
repository = "https://github.com/KemingHe/strain-seer"
documentation = "https://github.com/KemingHe/strain-seer/blob/main/README.md"
"Bug Tracker" = "https://github.com/KemingHe/strain-seer/issues"
[tool.poetry]
package-mode = false
requires-poetry = ">2.0"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.5"
watchdog = "^6.0.0"
pytest-cov = "^6.0.0"
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"