-
Notifications
You must be signed in to change notification settings - Fork 60
/
pyproject.toml
40 lines (33 loc) · 978 Bytes
/
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
[project]
name = "nautilus-open-any-terminal"
dynamic = ["version"]
description = "an extension for nautilus, which adds an context-entry for opening other terminal emulators than gnome-terminal."
authors = [
{name = "Felix Buehler", email = "[email protected]"},
]
dependencies = []
requires-python = ">=3.9"
readme = "README.md"
license = {file = "LICENSE"}
keywords = [ "nautilus", "extension", "terminal", "gnome"]
[build-system]
requires = [
"setuptools>=61",
"setuptools_scm[toml]>=6.2",
"wheel",
]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
[tool.setuptools.packages.find]
namespaces = false
[tool.black]
line-length = 120
[tool.isort]
profile = "black"
line_length = 120
[tool.mypy]
ignore_missing_imports = true
[tool.pylint]
max-line-length = 120
ignored-modules = "gi,setuptools"
disable = "global-statement,invalid-name,missing-module-docstring,missing-class-docstring,missing-function-docstring,too-few-public-methods"