-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
44 lines (40 loc) · 1.16 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
[tool.poetry]
name = "ao3scraper"
version = "1.0.3"
readme = "README.md"
description = "ao3scraper is a python webscraper that scrapes AO3 for fanfiction data, stores it in a database, and highlights entries when they are updated."
license = "GPL-3.0-or-later"
authors = ["Ethan <[email protected]>"]
repository = "https://github.com/EthanLeitch/ao3scraper"
packages = [{ include = "ao3scraper" }, { include = "ao3scraper/**/*.py" }]
[tool.poetry.scripts]
ao3scraper = "ao3scraper.cli:main"
[tool.poetry.dependencies]
python = "^3.10"
beautifulsoup4 = "4.11.1"
certifi = "2024.07.04"
chardet = "4.0.0"
click = "8.0.1"
commonmark = "0.9.1"
idna = "2.10"
Pygments = "2.15.0"
requests = "2.32.2"
rich = "12.4.1"
soupsieve = "2.3.2.post1"
urllib3 = "1.26.19"
configparser = "^5.3.0"
SQLAlchemy = "^1.4.41"
marshmallow-sqlalchemy = "^0.28.1"
deepdiff = { extras = ["murmur"], version = "^5.8.1" }
dictdiffer = "^0.9.0"
pathlib = "^1.0.1"
platformdirs = "^2.5.4"
alembic = "^1.8.1"
ruamel-yaml = "^0.17.21"
ao3-api = "^2.3.0"
pyyaml = "^6.0.2"
[tool.poetry.dev-dependencies]
pytest = "^5.2"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"