-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
45 lines (37 loc) · 859 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
38
39
40
41
42
43
44
45
[tool.poetry]
name = "free-llms"
version = "0.1.3.1"
description = "Use LLMs for Free."
authors = ["keenborder786 <[email protected]>"]
license = "MIT"
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.9,<4.0"
langchain = "^0.2.1"
beautifulsoup4 = "^4.12.3"
selenium = "^4.21.0"
fake-useragent = "^1.5.1"
undetected-chromedriver = "^3.5.5"
pydantic = "^2.7.3"
langchain-community = "^0.2.3"
[tool.poetry.group.dev.dependencies]
ruff = "^0.4.7"
mypy = "^1.10.0"
pytest = "^8.2.2"
[tool.ruff]
line-length = 150
[tool.ruff.lint]
select = [
"E", # pycodestyle
"F", # pyflakes
"I", # isort
"T201", # print
]
[tool.mypy]
disallow_untyped_defs = "True"
disable_error_code = ["import-untyped"]
[tool.pytest.ini_options]
pythonpath = ["./src"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"