-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
50 lines (42 loc) · 1.24 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
[build-system]
requires = ['setuptools >= 61.0']
build-backend = 'setuptools.build_meta'
[project]
name = 'pixutils'
version = '0.1'
dependencies = []
requires-python = '>=3.8'
authors = [
{ name = 'Tomi Valkeinen', email = 'tomi.valkeinen@ideasonboard.com' },
]
maintainers = [
{ name = 'Tomi Valkeinen', email = 'tomi.valkeinen@ideasonboard.com' },
]
description = 'Python pixutils'
readme = 'README.md'
license = { file = 'LICENSE.md' }
keywords = ['linux', 'kms', 'drm', 'v4l2']
classifiers = [
'Programming Language :: Python',
'License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)',
'Development Status :: 4 - Beta',
]
[project.urls]
Homepage = 'https://github.com/tomba/pixutils'
Repository = 'https://github.com/tomba/pixutils.git'
'Bug Tracker' = 'https://github.com/tomba/pixutils/issues'
[project.optional-dependencies]
conv = ['numpy']
qt = ['PyQt6']
[tool.ruff]
line-length = 100
[tool.ruff.lint]
extend-select = ['E', 'W', 'F', 'FA', 'Q', 'UP', 'PLE', 'PLW']
ignore = ['E741', 'E501', 'Q001', 'UP032'] # TODO: fix E501
[tool.ruff.lint.per-file-ignores]
'__init__.py' = ['F401', 'F403']
[tool.ruff.lint.flake8-quotes]
inline-quotes = 'single'
multiline-quotes = 'single'
[tool.ruff.format]
quote-style = 'single'