-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
53 lines (44 loc) · 955 Bytes
/
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
[build-system]
requires = ["flit_core >=2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "mitene_download"
requires-python = ">=3.6"
dependencies = ["aiohttp[speedups]"]
classifiers = ["License :: OSI Approved :: MIT License"]
readme = "README.md"
dynamic = ["description", "version"]
[project.license]
file = "LICENCE"
[project.urls]
Source = "https://github.com/perrinjerome/mitene_download"
[[project.authors]]
name = "Jérome Perrin"
[tool.pylint.messages_control]
disable = "all"
enable = [
"E",
"unused-variable",
"unused-import",
"unspecified-encoding",
"unreachable",
"duplicate-key",
]
[tool.ruff]
indent-width = 2
[tool.tox]
legacy_tox_ini = """
[tox]
isolated_build = True
package = wheel
env_list =
py312
py311
py310
py39
py38
[testenv]
commands = mitene_download --help
"""
[project.scripts]
mitene_download = "mitene_download:main"