-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
53 lines (39 loc) · 1.19 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
[tool.poetry]
name = "rescuebox"
version = "0.1.0"
description = ""
authors = ["Jagath Jai Kumar <[email protected]>"]
packages = [{include = "rescuebox"}]
[tool.poetry.scripts]
rescuebox = "rescuebox.main:app"
[tool.poetry.dependencies]
requests = "^2.32.3"
python = ">=3.11,<3.13"
pyyaml = "^6.0.2"
typer = "^0.12.5"
llvmlite = "^0.44.0"
pytest = "^8.3.4"
httpx = "^0.28.1"
# add dependencies common to all plugins here
numba = "^0.61.0"
torch = "2.2.2"
numpy = "1.26.4"
rb-lib = { path = "src/rb-lib", develop = true }
rb-file-utils = { path = "src/rb-file-utils", develop = true }
rb-doc-parser = { path = "src/rb-doc-parser", develop = true }
rb-audio-transcription = { path = "src/rb-audio-transcription", develop = true }
# Don't add new packages here, add them appropriately in the list above
beautifulsoup4 = "^4.13.3"
[tool.poetry.group.dev.dependencies]
black = "^24.10.0"
isort = "^5.13.2"
pytest = "^8.3.3"
ruff = "^0.7.1"
pre-commit = "^4.0.1"
[tool.poetry.group.api.dependencies]
rb-api = { path = "src/rb-api", develop = true }
[tool.poetry.group.bundling.dependencies]
pyinstaller = "^5.13.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"