-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
60 lines (54 loc) · 1.26 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
[build-system]
requires = ['setuptools>=61.0']
build-backend = 'setuptools.build_meta'
[project]
name = 'albert-stubs'
version = '2.3'
authors = [
{ name='Steven Xu', email='stevenxxiu@gmail.com' },
]
description = 'Stubs for Albert Launcher Python Plugins'
readme = 'README.md'
requires-python = '>=3.11'
classifiers = [
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX',
'Operating System :: MacOS',
]
[tool.setuptools.packages.find]
where = ['src']
[project.urls]
'Homepage' = 'https://github.com/stevenxxiu/albert_python_stubs'
'Bug Tracker' = 'https://github.com/stevenxxiu/albert_python_stubs/issues'
[tool.black]
target-version = ['py311']
line-length = 120
skip-string-normalization = true
quiet = true
exclude = '''
/(
\.git
)/
'''
[tool.isort]
profile = 'black'
line_length = 120
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
known_third_party = ['any_case']
sections = ['FUTURE', 'STDLIB', 'THIRDPARTY', 'FIRSTPARTY', 'LOCALFOLDER']
lines_after_imports = 2
atomic = true
combine_star = true
skip = []
[tool.pylint]
disable = [
'invalid-name',
'no-member',
'too-few-public-methods',
'too-many-ancestors',
]
max-line-length = 120