-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
46 lines (39 loc) · 1.11 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
[tool.poetry]
name = "iltransfer"
version = "1.1.1"
description = "Transfer your Instaloader downloads to another path"
license = "GPL-3.0-only"
authors = ["Alejandro González Momblán <[email protected]>"]
readme = "README.md"
repository = "https://github.com/YisusChrist/iltransfer"
[tool.poetry.dependencies]
python = "^3.11"
core-helpers = {git = "https://github.com/YisusChrist/core_helpers"}
rich = "^13.5.2"
tqdm = "^4.66.1"
[tool.poetry.group.dev.dependencies]
mypy = "^1.5.1"
pylint = "^2.17.7"
sphinx = "^7.2.6"
bandit = "^1.7.5"
pdoc = "^14.5.1"
monkeytype = "^23.3.0"
commitizen = "^3.10.0"
[tool.poetry.scripts]
iltransfer = "iltransfer.__main__:main"
[tool.commitizen]
name = "cz_conventional_commits"
tag_format = "v$version"
version_scheme = "semver"
version_provider = "poetry"
update_changelog_on_bump = true
[tool.isort]
profile = "black"
[tool.pylint]
disable = [
"W0622", # Redefining built-in 'format' (redefined-builtin)
"C0103", # Constant name doesn't conform to UPPER_CASE naming style (invalid-name)
]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"