-
-
Notifications
You must be signed in to change notification settings - Fork 88
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (30 loc) · 779 Bytes
/
pyproject.toml
File metadata and controls
35 lines (30 loc) · 779 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
[tool.poetry]
name = "scrapeghost"
version = "0.6.0"
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.11"
openai = "^1.3"
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"
[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"