-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
62 lines (54 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
55
56
57
58
59
60
61
62
[tool.poetry]
name = "gitcoin-search-spike"
version = "0.1.0"
description = ""
authors = ["Massimiliano Mirra"]
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.11,<3.13"
langchain = "^0.0.279"
python-dotenv = "^1.0.0"
openai = "^0.28.0"
tiktoken = "^0.4.0"
rich = "^13.5.2"
jq = "^1.6.0"
sentence-transformers = "^2.2.2"
torch = ">=2.0.0, !=2.0.1"
rake-nltk = "^1.0.6"
fastapi = "^0.103.2"
markdown = "^3.4.4"
strip-markdown = "^1.3"
mdx-linkify = "^2.1"
pydantic = "^2.4.2"
pydantic-settings = "^2.0.3"
chromadb = "^0.4.13"
lunr = "^0.7.0.post1"
pytest-watcher = "^0.3.4"
numpy = "^1.26.1"
apscheduler = "^3.10.4"
uvicorn = {extras = ["standard"], version = "^0.24.0.post1"}
python-json-logger = "^2.0.7"
eth-utils = "^2.3.1"
eth-hash = {extras = ["pycryptodome"], version = "^0.5.2"}
[tool.poetry.group.dev.dependencies]
taskipy = "^1.12.0"
pytest = "^7.4.1"
syrupy = "^4.5.0"
mypy = "^1.5.1"
chromadb = "^0.4.8"
pytest-only = "^2.0.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.taskipy.tasks]
test_watch = "ptw . -- --capture=no -vv"
test = "pytest"
dev = "PYTHONPATH=$PWD python src/main.py"
[tool.pyright]
include = ["src", "tests"]
exclude = ["**/__pycache__"]
ignore = []
defineConstant = { DEBUG = true }
[tool.black]
[tool.pytest-watcher]
now = true