|
1 | 1 | [build-system] |
2 | | -requires = ["setuptools>=59", "scikit-build>=0.13.1", "cmake", "ninja; sys_platform != 'win32'", "cython"] |
3 | | -build-backend = "setuptools.build_meta" |
| 2 | +requires = ["scikit-build-core", "cython>=3.0", "cython-cmake"] |
| 3 | +build-backend = "scikit_build_core.build" |
| 4 | + |
| 5 | +[project] |
| 6 | +name = "cyminhook" |
| 7 | +dynamic = ["version"] |
| 8 | +authors = [{ name = "Segev Finer", email = "segev208@gmail.com" }] |
| 9 | +description = "Hook functions on Windows using MinHook" |
| 10 | +keywords = ["MinHook"] |
| 11 | +license = "MIT" |
| 12 | +license-files = ["LICENSE"] |
| 13 | +readme = "README.rst" |
| 14 | +requires-python = ">=3.9" |
| 15 | +classifiers = [ |
| 16 | + "Development Status :: 3 - Alpha", |
| 17 | + "Environment :: Win32 (MS Windows)", |
| 18 | + "Intended Audience :: Developers", |
| 19 | + "Topic :: Security", |
| 20 | + "Operating System :: Microsoft :: Windows", |
| 21 | + "Programming Language :: Cython", |
| 22 | + "Programming Language :: Python :: 3", |
| 23 | + "Programming Language :: Python :: 3.9", |
| 24 | + "Programming Language :: Python :: 3.10", |
| 25 | + "Programming Language :: Python :: 3.11", |
| 26 | + "Programming Language :: Python :: 3.12", |
| 27 | + "Programming Language :: Python :: 3.13", |
| 28 | + "Programming Language :: Python :: 3.14", |
| 29 | +] |
| 30 | + |
| 31 | +[project.urls] |
| 32 | +homepage = "https://github.com/segevfiner/cyminhook" |
| 33 | +documentation = "https://segevfiner.github.io/cyminhook/" |
| 34 | +issues = "https://github.com/segevfiner/cyminhook/issues" |
| 35 | + |
| 36 | +[project.optional-dependencies] |
| 37 | +dev = [ |
| 38 | + "sphinx==9.*; python_version >= '3.12'", |
| 39 | +] |
| 40 | + |
| 41 | +[[tool.dynamic-metadata]] |
| 42 | +provider = "scikit_build_core.metadata.regex" |
| 43 | +field = "version" |
| 44 | +input = "cyminhook/__init__.py" |
0 commit comments