-
Notifications
You must be signed in to change notification settings - Fork 59
/
pyproject.toml
105 lines (95 loc) · 2.61 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
[build-system]
requires = ["setuptools>=66.0", "setuptools_scm>=7.1"]
build-backend = "setuptools.build_meta"
[project]
name = "dosage"
description = "a comic strip downloader and archiver"
readme = "README.md"
maintainers = [{name = "Tobias Gruetzmacher", email = "[email protected]"}]
license = {text = "MIT License"}
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Multimedia :: Graphics",
]
keywords = ["comic", "webcomic", "downloader", "archiver", "crawler"]
requires-python = ">=3.8"
dependencies = [
"colorama",
"imagesize",
"lxml>=4.0.0",
"platformdirs",
"requests>=2.0",
"importlib_resources>=5.0.0;python_version<'3.9'",
]
dynamic = ["version"]
[project.urls]
Homepage = "https://dosage.rocks"
Code = "https://github.com/webcomics/dosage"
"Issue tracker" = "https://github.com/webcomics/dosage/issues"
[project.optional-dependencies]
bash = ["argcomplete"]
css = ["cssselect"]
dev = [
"allure-pytest",
"pytest-cov",
"pytest-xdist",
"responses",
]
lint = [
"flake8~=6.0",
"flake8-2020",
"flake8-breakpoint",
"flake8-bugbear",
"flake8-coding",
"flake8-commas",
"flake8-comprehensions",
"flake8-deprecated",
"flake8-eradicate",
"flake8-fixme",
"flake8-functions",
"flake8-future-import",
"flake8-logging-format",
"flake8-noqa",
"Flake8-pyproject",
"flake8-pytest",
"flake8-pytest-style",
]
[project.scripts]
dosage = "dosagelib.cmd:main"
[project.entry-points.pyinstaller40]
hook-dirs = "dosagelib.__pyinstaller:get_hook_dirs"
[tool.setuptools]
platforms = ["Any"]
license-files = ["COPYING"]
[tool.setuptools.packages]
find = {namespaces = false}
[tool.distutils.bdist_wheel]
universal = true
[tool.setuptools_scm]
[tool.flake8]
max_line_length = 100
ignore = [
'E127', 'E128', # hanging instead of visual indent
'FI18', 'FI58', # ignore __future__ "annotations" for now
'W504' # line breaks after binary operator
]
noqa-require-code = true
no-accept-encodings = true
min-version = "3.8"
extend-exclude = [
'.venv',
'build',
]