-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
59 lines (52 loc) · 1.56 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
[tool.poetry]
name = "nxtools"
version = "2.0.0"
description = "nxtools is a set of various tools and helpers used by Nebula broadcast automation system and other software by imm studios, z.s."
keywords = ["utilities", "logging", "automation", "ffmpeg", "casparcg"]
repository = "https://github.com/immstudios/nxtools"
authors = ["Martin Wacker <[email protected]>"]
license = "MIT"
readme = "README.md"
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python",
"Topic :: Multimedia :: Video :: Conversion",
"Topic :: Utilities",
]
[tool.poetry.dependencies]
python = "^3.10"
colorama = "^0.4.4"
Unidecode = "^1.2.0"
[tool.poetry.dev-dependencies]
mypy = "^1.8"
ruff = "^0.3.1"
types-colorama = "^0.4.15.20240205"
[tool.ruff]
line-length = 88
[tool.ruff.format]
indent-style = "space"
line-ending = "auto"
[tool.ruff.lint]
select = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # pyflakes
"I", # isort
"C", # flake8-comprehensions
"ISC", # flake8-implicit-str-concat
"C4", # flake8-comprehensions
"UP", # pyupgrade
]
ignore = [
"ISC001", # incompatible with formatting
"E721", # do not compare types, i'll fix this later :)
"C901", # too complex. C'mon - this is a complex project
]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"