-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
52 lines (48 loc) · 1.34 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
[tool.poetry]
name = "webcomix"
version = "3.11.1"
description = "Webcomic downloader"
authors = ["Jean-Christophe Pelletier <[email protected]>"]
readme = "README.md"
repository = "https://github.com/J-CPelletier/webcomix"
homepage = "https://github.com/J-CPelletier/webcomix"
license = "MIT"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: End Users/Desktop",
"Topic :: Internet :: WWW/HTTP",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Operating System :: OS Independent",
"Framework :: Scrapy",
]
packages = [
{ include = "webcomix" },
]
[tool.poetry.dependencies]
python = "^3.9"
click = "^8.0.0"
tqdm = "^4.66.1"
Scrapy = "2.11.2"
scrapy-splash = "^0.9.0"
scrapy-fake-useragent = "^1.4.4"
pytest-rerunfailures = "^11.1.2"
docker = "^7.1.0"
[tool.poetry.dev-dependencies]
pytest = "^7.4.4"
pytest-cov = "^4.1.0"
pytest-mock = "^3.6.1"
pytest-xdist = "^3.6.1"
coveralls = "^3.2.0"
mypy = "^1.5.0"
pre-commit = "^2.15.0"
black = "^24.3.0"
[tool.poetry.scripts]
webcomix = "webcomix.cli:cli"
[build-system]
requires = ["poetry>=1.2.0"]
build-backend = "poetry.masonry.api"