Skip to content

Commit 951b4d8

Browse files
authored
Add scikit-build-core (#174)
Signed-off-by: Henry Schreiner <[email protected]>
1 parent e55b399 commit 951b4d8

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

mypy_primer/projects.py

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1600,6 +1600,32 @@ def get_projects() -> list[Project]:
16001600
deps=["cryptography", "pydantic", "pytest"],
16011601
cost={"mypy": 24},
16021602
),
1603+
Project(
1604+
location="https://github.com/scikit-build/scikit-build-core",
1605+
mypy_cmd="{mypy} {paths}",
1606+
pyright_cmd="{pyright} {paths}",
1607+
paths=["src", "tests", "noxfile.py"],
1608+
deps=[
1609+
"build",
1610+
"cattrs",
1611+
"cmake",
1612+
"exceptiongroup",
1613+
"hatch-fancy-pypi-readme",
1614+
"importlib-resources",
1615+
"markdown-it-py",
1616+
"ninja",
1617+
"nox",
1618+
"orjson",
1619+
"packaging",
1620+
"pytest",
1621+
"pytest-subprocess",
1622+
"rich",
1623+
"setuptools-scm",
1624+
"tomli",
1625+
"types-setuptools",
1626+
],
1627+
cost={"mypy": 34},
1628+
),
16031629
]
16041630
assert len(projects) == len({p.name for p in projects})
16051631
for p in projects:

0 commit comments

Comments
 (0)