-
Notifications
You must be signed in to change notification settings - Fork 106
/
pyproject.toml
37 lines (32 loc) · 951 Bytes
/
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
[tool.poetry]
name = "mindgraph"
version = "0.1.0"
description = "proof of concept prototype for generating and querying against an ever-expanding knowledge graph with ai"
authors = ["Yohei Nakajima <[email protected]>"]
packages = [
{ include = "app", from = "." }
]
[tool.poetry.dependencies]
python = ">=3.10.0,<3.11"
flask = "^3.0.0"
app = "^0.0.1"
pytorch-forecasting = "^1.0.0"
blinker = "^1.7.0"
openai = "^0.28.1"
typeid-python = "^0.2.2"
python-dotenv = "^1.0.1"
nexus-python = "^0.2.0"
beautifulsoup4 = "^4.9.3"
nebula3-python = "^3.5.0"
falkordb = "^1.0.3"
[tool.pyright]
# https://github.com/microsoft/pyright/blob/main/docs/configuration.md
useLibraryCodeForTypes = true
exclude = [".cache"]
[tool.ruff]
# https://beta.ruff.rs/docs/configuration/
select = ['E', 'W', 'F', 'I', 'B', 'C4', 'ARG', 'SIM']
ignore = ['W291', 'W292', 'W293']
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"