-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
63 lines (55 loc) · 1.37 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
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "makerelease"
version = "0.1.0"
authors = [
{ name = "Rick Sanchez" },
{ name = "Norman" },
]
description = "script per velocizzare la pubblicazione di film e serie tv sui forum P2P italiani"
readme = "README.md"
license = { file = "LICENSE" }
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"beautifulsoup4~=4.12.3",
"customtkinter~=5.2.2",
"ffmpeg_python~=0.2.0",
"matplotlib~=3.9.0",
"parse-torrent-title~=2.8.1",
"pillow~=10.3.0",
"pymediainfo~=6.1.0",
"Requests~=2.32.2",
"scipy~=1.13.1",
"torf~=4.2.4",
"Jinja2~=3.1.3",
]
[project.urls]
Repository = "https://github.com/c137ricksanchez/makerelease"
[project.optional-dependencies]
dev = [
"ruff",
"pytest",
"pytest-cov",
#"setuptools",
#"wheel",
#"twine",
#"build",
]
[tool.ruff]
# Set the maximum line length to 120
line-length = 120
indent-width = 4
# Support Python 3.9+
target-version = "py39"
[tool.ruff.lint]
extend-select = ["I"]
# 4. Ignore `E402` (import violations) in all `__init__.py` files, and in select subdirectories.
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["E402"]
"**/{tests,docs,tools}/*" = ["E402"]