forked from MarshalX/python-libipld
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
72 lines (66 loc) · 2.24 KB
/
Copy pathpyproject.toml
File metadata and controls
72 lines (66 loc) · 2.24 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
63
64
65
66
67
68
69
70
71
72
[project]
name = "libipld"
dynamic = ["version"]
description = "Python binding to the Rust IPLD library"
authors = [
{name = "Ilya (Marshal)", email = "ilya@marshal.dev"}
]
license = "MIT"
repository = "https://github.com/MarshalX/python-libipld"
readme = "README.md"
keywords = ["library", "lib", "ipld", "cid", "multibase", "multihash", "dag", "cbor", "dag-cbor"]
requires-python = ">=3.8"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"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",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Pre-processors",
]
[project.urls]
"Homepage" = "https://github.com/MarshalX/python-libipld"
"Tracker" = "https://github.com/MarshalX/python-libipld/issues"
"Author" = "https://github.com/MarshalX"
[dependency-groups]
dev = ["maturin>=1.2,<2.0"]
testing = [
{ include-group = "dev" },
"pytest==8.3.5",
"pytest-benchmark==4.0.0",
"pytest-xdist==3.6.1",
]
codspeed = [
# only run on CI with the latest Python version
'pytest-codspeed==3.2.0; python_version == "3.13" and implementation_name == "cpython"',
]
all = [
{ include-group = "dev" },
{ include-group = "testing" },
]
[tool.pytest.ini_options]
addopts = [
'--benchmark-columns', 'min,mean,stddev,outliers,rounds,iterations',
'--benchmark-disable', # use --benchmark-enable
]
[tool.maturin]
python-source = "python"
module-name = "libipld._libipld"
bindings = "pyo3"
features = ["pyo3/extension-module"]
[build-system]
requires = ["maturin>=1.2,<2.0"]
build-backend = "maturin"