-
Notifications
You must be signed in to change notification settings - Fork 53
/
Copy pathpyproject.toml
77 lines (67 loc) · 1.88 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
[project]
name = "yle-dl"
description = "Download videos from Yle servers"
readme = "README.md"
authors = [
{name = "Antti Ajanki", email = "[email protected]"}
]
license = {text = "GPLv3+"}
dependencies = [
"requests",
"lxml",
"ConfigArgParse >= 0.13.0",
]
requires-python = ">=3.8"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"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",
"Programming Language :: Python :: 3.13",
"Topic :: Internet",
"Topic :: Multimedia :: Video",
]
dynamic = ["version"]
[project.optional-dependencies]
test = [
"pytest",
]
extra = [
"psutil",
"xattr;sys_platform != \"win32\"",
]
[project.scripts]
yle-dl = "yledl.yledl:main"
[project.urls]
Home = "https://aajanki.github.io/yle-dl/"
Source = "https://github.com/aajanki/yle-dl/"
changelog = "https://raw.githubusercontent.com/aajanki/yle-dl/master/ChangeLog"
issues = "https://github.com/aajanki/yle-dl/issues"
[tool.flit.module]
name = "yledl"
[tool.flit.sdist]
include = ["*.md", "COPYING", "ChangeLog", "setup.py", "yledl.conf.sample", "tests/**/*.py"]
exclude = ["**/*~"]
[tool.ruff.lint]
select = ["E", "F"]
ignore = [
# Too many leading # before block comment
"E266"
]
[tool.ruff.lint.pycodestyle]
max-line-length = 100
[tool.ruff.format]
quote-style = "single"
[tool.mypy]
disable_error_code = "import-untyped"
[build-system]
requires = ["flit_core >=3.9,<4"]
build-backend = "flit_core.buildapi"