-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
36 lines (34 loc) · 1.08 KB
/
pyproject.toml
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
[build-system]
requires = ["maturin>=1.4,<2.0"]
build-backend = "maturin"
[project]
name = "pyasn1-fasder"
authors = [
{name = "Corey Bonnell", email = "[email protected]" },
]
description = "A DER decoder for pyasn1 built to detect encoding errors"
license = "MIT"
readme = "README.md"
repository = "https://github.com/CBonnell/pyasn1-fasder"
requires-python = ">=3.9"
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
dynamic = ["version"]
dependencies = [
"pyasn1",
]
[tool.maturin]
features = ["pyo3/extension-module"]
python-source = "python"
module-name = "pyasn1_fasder._native"