forked from jamesturk/scrapeghost
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (31 loc) · 811 Bytes
/
pyproject.toml
File metadata and controls
36 lines (31 loc) · 811 Bytes
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
[tool.poetry]
name = "scrapeghost"
version = "0.5.1"
description = "An experimental library for scraping websites using GPT."
authors = ["James Turk <dev@jamesturk.net>"]
license = "Hippocratic License HL3-EXTR-FFD-LAW-MIL-SV"
readme = "README.md"
[tool.poetry.scripts]
scrapeghost = 'scrapeghost.cli:main'
[tool.poetry.dependencies]
python = "^3.10"
openai = "^0.27.1"
cssselect = "^1.2.0"
lxml = "^4.9.2"
structlog = ">22.3,<24.0"
typer = ">0.7,<1.0"
rich = "^13.3.2"
tiktoken = "^0.3.2"
pydantic = "^2"
langchain = "langchain[llms]"
[tool.poetry.group.dev.dependencies]
black = "^23.1.0"
pytest = "^7.2.2"
mkdocs-material = "^9.1.3"
ruff = "^0.0.257"
mypy = "^1.1.1"
pytest-cov = "^4.0.0"
types-requests = "^2.28.11.15"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"