-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
65 lines (60 loc) · 1.81 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
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
[tool.poetry]
name = "hespi"
version = "0.5.1"
description = "HErbarium Specimen sheet PIpeline"
authors = ["Robert Turnbull <[email protected]>"]
license = "Apache-2.0"
readme = "README.rst"
exclude = ["hespi/data/plants.csv"]
homepage = "https://rbturnbull.github.io/hespi/"
repository = "https://github.com/rbturnbull/hespi"
documentation = "https://rbturnbull.github.io/hespi/"
keywords = ["herbarium", "object detection", "OCR", "HTR", "specimen", "handwritten text recognition"]
classifiers = [
"License :: OSI Approved :: Apache Software License",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering :: Image Processing",
"Topic :: Scientific/Engineering :: Image Recognition"
]
[tool.poetry.dependencies]
python = ">=3.8.1,<3.12"
rich = ">=10.16.1"
typer = ">=0.4.0"
torchapp = ">=0.2.0"
torch = "=2.2.1"
pytesseract = ">=0.3.10"
transformers = ">=4.21.3"
appdirs = ">=1.4.4"
jinja2 = ">=3.1.2"
ultralytics = ">=8.1.0"
langchain = ">=0.2.0"
langchain-openai = ">=0.1.0"
langchain-anthropic = "^0.1.23"
[tool.poetry.dev-dependencies]
rcssmin = ">=1.1.2"
pytest = ">=6.2.5"
ipykernel = ">=6.6.1"
coverage = ">=5.5"
autopep8 = ">=1.5.7"
Sphinx = ">=4.2.0"
nbsphinx = ">=0.8.7"
sphinx-rtd-theme = ">=1.0.0"
sphinx-autobuild = ">=2021.3.14"
myst-parser = ">=0.15.2"
pre-commit = ">=2.15.0"
sphinx-copybutton = ">=0.4.0"
black = ">=21.10b0"
sphinx-click = {git = "https://github.com/rbturnbull/sphinx-click.git"}
[tool.pytest.ini_options]
minversion = "6.0"
testpaths = [
"tests",
]
[build-system]
requires = ["setuptools","poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
hespi = "hespi.main:app"
hespi-tools = "hespi.tools:app"