-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (44 loc) · 1.43 KB
/
pyproject.toml
File metadata and controls
50 lines (44 loc) · 1.43 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
[project]
name = "pycades"
dynamic = [ "version" ]
description = "The Pycades extension provides a programming interface similar to CryptoPro"
readme = "README.md"
authors = [
{ name = "CryptoPro LLC", email = "info@cryptopro.ru"}
]
maintainers = [
{ name = "cpsdenis", email = "sdenis@cryptopro.ru"}
]
license-files = ["LICENSE"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: POSIX :: Linux",
"Topic :: Software Development :: Libraries :: Python Modules",
]
requires-python = ">=3.9"
dependencies = []
[project.urls]
homepage = "https://docs.cryptopro.ru/cades/pycades"
documentation = "https://docs.cryptopro.ru/cades/pycades"
source = "https://github.com/CryptoPro/pycades"
[tool.py-build-cmake.module]
name = "pycades"
directory = "src"
[tool.py-build-cmake.sdist]
include = ["CMakeLists.txt", "patches/*", "src/*", "samples/*", "doc/*"]
[tool.py-build-cmake.cmake]
minimum_version = "3.18"
source_path = "."
build_args = ["-j"]
install_components = ["python_modules"]
# [tool.py-build-cmake.stubgen]
[build-system]
requires = ["py-build-cmake~=0.5.0"]
build-backend = "py_build_cmake.build"