-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
73 lines (62 loc) · 1.78 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
70
71
72
73
[tool.poetry]
name = "gyandex"
version = "0.1.0"
description = "organizes vast information into a structured, accessible format to simplify knowledge acquisition"
authors = ["Dhruv Baldawa <dhruvbaldawa@gmail.com>"]
license = "AGPL-3.0-or-later"
readme = "README.md"
[tool.poetry.scripts]
podgen = "gyandex.cli.genpod:main"
[tool.poetry.dependencies]
python = "^3.11"
pandas = "^2.2.3"
notebook = "^7.2.2"
torch = "^2.5.0"
langchain = "^0.3.4"
langchain-google-genai = "^2.0.1"
python-dotenv = "^1.0.1"
ipywidgets = "^8.1.5"
langchain-google-community = {extras = ["texttospeech"], version = "^2.0.1"}
pydub = "^0.25.1"
boto3 = "^1.35.49"
feedgen = "^1.0.0"
mutagen = "^1.47.0"
rich = {extras = ["jupyter"], version = "^13.9.3"}
python-slugify = "^8.0.4"
langchain-openai = "^0.2.12"
[tool.poetry.group.dev.dependencies]
nbstripout = "^0.7.1"
pytest = "^8.3.3"
pytest-mock = "^3.14.0"
pytest-cov = "^5.0.0"
rust-just = "^1.36.0"
responses = "^0.25.3"
ruff = "^0.8.2"
pyright = "^1.1.390"
pytest-asyncio = "^0.25.0"
pre-commit = "^4.0.1"
[project.classifiers]
license = "OSI Approved :: GNU Affero General Public License v3 (AGPLv3)"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
line-length = 120
fix = true
[tool.ruff.lint]
# Add the `line-too-long` rule to the enforced rule set. By default, Ruff omits rules that
# overlap with the use of a formatter, like Black, but we can override this behavior by
# explicitly adding the rule.
extend-select = ["E501", "I"]
[tool.pyright]
include = ["gyandex"]
exclude = [
"**/__pycache__",
"**/*_test.py", # @FIXME: remove this once code issues are resolved
]
defineConstant = { DEBUG = true }
reportMissingImports = "error"
reportMissingTypeStubs = false
executionEnvironments = [
{ root = "gyandex" }
]