forked from Digital-Sapphire/PyUpdater
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
45 lines (39 loc) · 1.05 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
[tool.poetry]
name = "pyupdater"
version = "4.1.0"
description = "Fork of PyUpdater"
authors = ["Jayme Gordon <jaymegordo@gmail.com>"]
license = "MIT"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.9"
appdirs = "^1.4.4"
bsdiff4 = "^1.2.1"
certifi = "^2021.5.30"
dsdev-utils = "1.0.5"
pyinstaller = "^5.3"
PyNaCl = "^1.4.0"
stevedore = "<4.0"
urllib3 = "<2.0"
[tool.poetry.dev-dependencies]
autopep8 = "^1.5.7"
pre-commit = "^2.15.0"
ruff = "^0.0.263"
[tool.poetry.scripts]
pyupdater = "pyupdater.cli:main"
[tool.ruff]
line-length = 120
ignore = ["E713", "E714", "E722", "E731", "F405", "F841"]
[tool.pyright]
ignore = ["pyupdater", "tests", "dev"]
reportWildcardImportFromLibrary = "none"
reportUnboundVariable = "information"
reportMissingImports = "information"
reportGeneralTypeIssues = "information"
reportOptionalIterable = "none"
reportOptionalMemberAccess = "information"
reportOptionalSubscript = "information"
reportInvalidStringEscapeSequence = "information"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"