-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
54 lines (47 loc) · 1.3 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
[tool.poetry]
name = "pyrhubarb"
version = "0.0.3"
description = "A Python framework for multi-modal document understanding with generative AI"
authors = ["Rhubarb Developers <rhubarb-developers@amazon.com>"]
license = "Apache 2.0"
readme = "README.md"
homepage = "https://github.com/awslabs/rhubarb"
repository = "https://github.com/awslabs/rhubarb"
documentation = "https://github.com/awslabs/rhubarb"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
packages = [
{ include = "rhubarb", from = "src" },
]
[tool.poetry.dependencies]
python = ">=3.9"
pillow = "^10.3.0"
pdfplumber = "^0.11.0"
jsonschema = "^4.21.1"
pydantic = "^2.6.4"
fastparquet = "^2024.5.0"
[tool.poetry.group.dev.dependencies]
ruff = "^0.3.4"
pre-commit = "^3.7.0"
sphinx = "^7.3.4"
furo = "^2024.1.29"
nbsphinx = "^0.9.3"
sphinx-copybutton = "^0.5.2"
boto3 = "^1.35.20"
botocore = "^1.35.20"
[tool.ruff]
line-length = 100
src = ["src"]
[tool.ruff.lint]
extend-select = ["I"]
[tool.ruff.lint.isort]
length-sort = true
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.urls]
"Homepage" = "https://github.com/awslabs/rhubarb"
"Issues" = "https://github.com/awslabs/rhubarb/issues"