-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
65 lines (57 loc) · 1.77 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "subtle"
authors = [
{name = "Veronica Berglyd Olsen", email = "[email protected]"},
]
description = "A simple subtitle editor and converter"
readme = {file = "README.md", content-type = "text/markdown"}
license = {text = "GNU General Public License v3"}
classifiers = [
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: CPython",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Development Status :: 3 - Alpha",
"Operating System :: OS Independent",
"Intended Audience :: End Users/Desktop",
"Natural Language :: English",
"Topic :: Multimedia",
]
requires-python = ">=3.9"
dependencies = [
"pyqt6>=6.4",
"pyenchant>=3.0.0",
]
dynamic = ["version"]
[project.urls]
Homepage = "https://github.com/vkbo/subtle"
Repository = "https://github.com/vkbo/subtle"
Issues = "https://github.com/vkbo/subtle/issues"
[project.gui-scripts]
subtle = "subtle:main"
[tool.setuptools.dynamic]
version = {attr = "subtle.__version__"}
[tool.setuptools.packages.find]
include = ["subtle*"]
[tool.isort]
py_version="310"
line_length = 99
wrap_length = 79
multi_line_output = 5
force_grid_wrap = 0
lines_between_types = 1
forced_separate = ["tests.*", "PyQt6.*"]
[tool.flake8]
max-line-length = 99
ignore = ["E133", "E221", "E226", "E228", "E241", "W503", "ANN101", "ANN102", "ANN401"]
per-file-ignores = ["tests/*:ANN"]
exclude = ["docs/*"]
[tool.autopep8]
max_line_length = 99
ignore = ["E133", "E221", "E226", "E228", "E241", "W503"]