forked from run-llama/llama_index
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
69 lines (64 loc) · 2.1 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
66
67
68
69
[build-system]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core"]
[tool.codespell]
check-filenames = true
check-hidden = true
# Feel free to un-skip examples, and experimental, you will just need to
# work through many typos (--write-changes and --interactive will help)
skip = "*.csv,*.html,*.json,*.jsonl,*.pdf,*.txt,*.ipynb"
[tool.mypy]
disallow_untyped_defs = true
# Remove venv skip when integrated with pre-commit
exclude = ["_static", "build", "examples", "notebooks", "venv"]
ignore_missing_imports = true
python_version = "3.8"
[tool.poetry]
authors = ["Andrei Fajardo <[email protected]>", "Jerry Liu <[email protected]>"]
description = "llama-index networks integration"
exclude = ["**/BUILD"]
license = "MIT"
maintainers = [
"Andrei Fajardo <[email protected]>",
"Haotian Zhang <[email protected]>",
"Jerry Liu <[email protected]>",
"Logan Markewich <[email protected]>",
"Simon Suo <[email protected]>",
"Sourabh Desai <[email protected]>",
]
name = "llama-index-networks"
packages = [{include = "llama_index/"}]
readme = "README.md"
version = "0.2.3"
[tool.poetry.dependencies]
python = ">=3.8.1,<4.0"
llama-index-core = "^0.10.10"
fastapi = {extras = ["all"], version = "^0.109.2"}
pyjwt = {extras = ["crypto"], version = "^2.8.0"}
python-jose = "^3.3.0"
uvicorn = {extras = ["standard"], version = "^0.27.1"}
pydantic = {extras = ["dotenv"], version = "^2.6.1"}
python-dotenv = "^1.0.1"
aiohttp = "^3.9.3"
ecdsa = ">=0.19.0"
[tool.poetry.group.dev.dependencies]
black = {extras = ["jupyter"], version = ">=23.7.0,<=24.3.0"}
codespell = {extras = ["toml"], version = ">=v2.2.6"}
ipython = "8.10.0"
jupyter = "^1.0.0"
llama-index-embeddings-openai = "^0.1.5"
llama-index-llms-openai = "^0.1.5"
llama-index-readers-file = "^0.1.4"
mypy = "0.991"
pre-commit = "3.2.0"
pylint = "2.15.10"
pytest = "7.2.1"
pytest-mock = "3.11.1"
ruff = "0.0.292"
tree-sitter-languages = "^1.8.0"
types-Deprecated = ">=0.1.0"
types-PyYAML = "^6.0.12.12"
types-protobuf = "^4.24.0.4"
types-redis = "4.5.5.0"
types-requests = "2.28.11.8" # TODO: unpin when mypy>0.991
types-setuptools = "67.1.0.0"