-
Notifications
You must be signed in to change notification settings - Fork 72
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (45 loc) · 1.21 KB
/
pyproject.toml
File metadata and controls
55 lines (45 loc) · 1.21 KB
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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "pybind11-stubgen"
description = "PEP 561 type stubs generator for pybind11 modules"
version = "2.5.5"
requires-python = ">=3.10"
authors = [
{name = "Sergei Izmailov", email = "sergei.a.izmailov@gmail.com"},
]
license = "BSD-3-Clause"
license-files = ["LICENSE"]
dynamic = ["readme"]
[project.urls]
Repository = "https://github.com/pybind/pybind11-stubgen"
Issues = "https://github.com/pybind/pybind11-stubgen/issues"
[dependency-groups]
dev = [
"cmeel==0.59.0",
"cmeel-eigen==3.4.0.2",
"numpy~=1.20",
"pip",
"scipy~=1.0",
"typing_extensions>=4,<5",
"mypy>=1.19.1",
"ruff>=0.14.14",
]
[tool.setuptools.packages]
find = {}
[tool.setuptools.dynamic]
readme = {file = ["README.md"], content-type = "text/markdown"}
[project.entry-points.console_scripts]
pybind11-stubgen = "pybind11_stubgen.__init__:main"
[tool.ruff]
target-version = "py310"
line-length = 88
exclude = ["tests/stubs"]
[tool.ruff.lint]
ignore = ["F403"] # undefined names imported (triggered by native extensions)
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
[tool.ruff.lint.pycodestyle]
max-line-length = 88