-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathpyproject.toml
More file actions
62 lines (47 loc) · 1.37 KB
/
pyproject.toml
File metadata and controls
62 lines (47 loc) · 1.37 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
56
57
58
59
60
61
62
[build-system]
requires = ["setuptools>=80", "setuptools_scm[toml]"]
build-backend = "setuptools.build_meta"
[project]
name = "clr_loader"
description = "Generic pure Python loader for .NET runtimes"
license-files = ["LICENSE"]
requires-python = ">=3.10"
readme = "README.md"
dependencies = ["cffi >= 1.17"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X",
]
dynamic = ["version"]
[[project.authors]]
name = "Benedikt Reinartz"
email = "filmor@gmail.com"
[project.urls]
Sources = "https://github.com/pythonnet/clr-loader"
Documentation = "https://pythonnet.github.io/clr-loader/"
[dependency-groups]
dev = [
"pytest >=7.0; python_version <= '3.9'",
"pytest >=9.0, <10.0; python_version > '3.9'",
"ruff >=0.15",
]
doc = ["furo >= 2025.0", "sphinx >=9.0, <10.0"]
[tool.uv.dependency-groups.doc]
requires-python = ">=3.12"
[tool.setuptools]
zip-safe = false
package-data = { "clr_loader.ffi" = ["dlls/x86/*.dll", "dlls/amd64/*.dll"] }
[tool.setuptools.packages.find]
include = ["clr_loader*"]
[tool.setuptools_scm]
[tool.pytest.ini_options]
xfail_strict = true
testpaths = ["tests"]
[tool.mypy]
allow-redefinition = true
[tool.pyright]
pythonPlatform = "All"