-
Notifications
You must be signed in to change notification settings - Fork 44
/
pyproject.toml
68 lines (55 loc) · 1.29 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
66
67
68
[build-system]
requires = ["setuptools>=45", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "menuinst"
description = "cross platform install of menu items"
readme = "README.md"
license = {file = "LICENSE.txt"}
requires-python = ">=3.8"
dynamic = [
"version"
]
[project.urls]
repository = "https://github.com/conda/menuinst"
[tool.setuptools_scm]
write_to = "menuinst/_version.py"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["."]
include = ["menuinst*"]
namespaces = true
[tool.black]
line-length = 99
target-version = ['py38', 'py39', 'py310', 'py311']
include = '\.pyi?$'
exclude = '''
^/(
(
menuinst/_legacy
| tests/_legacy
)/
)
'''
[tool.isort]
profile = "black"
line_length = 99
[tool.pyright]
pythonPlatform = "All"
[tool.ruff]
line-length = 99
exclude = [
"_schema.py"
]
[tool.vendoring]
destination = "menuinst/_vendor/"
namespace = "menuinst._vendor"
requirements = "dev/vendoring/vendor.txt"
patches-dir = "dev/vendoring/patches"
protected-files = ["__init__.py", "vendor.txt", "README.md"]
[tool.vendoring.typing-stubs]
# prevent stubs from being generated
apipkg = []
[tool.vendoring.license.fallback-urls]
apipkg = "https://raw.githubusercontent.com/pytest-dev/apipkg/master/LICENSE"