-
Notifications
You must be signed in to change notification settings - Fork 12
/
pyproject.toml
52 lines (46 loc) · 1.09 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 = "MTG-Art-Downloader"
version = "v1.2.0"
description = "Mass download MTG card arts using MTG Pics with Scryfall as a backup source."
authors = ["MrTeferi <[email protected]>"]
license = "GNU General Public License v3.0"
[tool.poetry.dependencies]
python = ">=3.9,<3.12"
black = "^22.6.0"
bs4 = "^0.0.1"
pyyaml = "^6.0.0"
colorama = "^0.4.5"
contextlib3 = "^3.10.0"
mypy = "^0.971"
pre-commit = "^2.20.0"
pyclean = "^2.2.0"
pytest = "^7.1.2"
requests = "^2.28.1"
Unidecode = "^1.3.4"
urllib3 = "^1.26.11"
pyinstaller = "5.6.2"
hjson = "^3.0.2"
pathvalidate = "^2.5.1"
ratelimit = "^2.2.1"
backoff = "^2.2.1"
[tool.poetry.dev-dependencies]
commitizen = "^2.29.2"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.mypy]
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = [
"bs4",
"colorama"
]
ignore_missing_imports = true
[tool.commitizen]
update_changelog_on_bump = true
tag_format = "v$major.$minor.$patch$prerelease"
changelog_start_rev = 'v1.1.6'
version = "1.3.0"
version_files = [
"src/__version__.py"
]