-
Notifications
You must be signed in to change notification settings - Fork 16
/
pyproject.toml
43 lines (39 loc) · 1.13 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
37
38
39
40
41
42
43
[project]
name = "fastbloom_rs"
classifiers = ["Programming Language :: Python"]
requires-python = ">=3.7"
license = { file = "LICENSE" }
authors = [
{ email = "1939810907@qq.com" },
{ name = "Yan Kun" }
]
maintainers = [
{ name = "Yan Kun", email = "1939810907@qq.com" }
]
[project.optional-dependencies]
test = [
"pytest <= 7.1.1",
"pybloom_live"
]
[project.urls]
homepage = "https://github.com/yankun1992/fastbloom"
documentation = "https://github.com/yankun1992/fastbloom/blob/main/README.md"
repository = "https://github.com/yankun1992/fastbloom"
[build-system]
requires = ["maturin>=0.12,<0.13"]
build-backend = "maturin"
[tool.maturin]
# Cargo manifest path
manifest-path = "./Cargo.toml"
# Include arbitrary files in the sdist
sdist-include = []
# Bindings type
bindings = "pyo3"
# Don't check for manylinux compliance
skip-auditwheel = false
# Strip the library for minimum file size
strip = true
# Extra arguments that will be passed to cargo as `cargo rustc [...] [arg1] [arg2] -- [...]`
cargo-extra-args = ""
# Extra arguments that will be passed to rustc as `cargo rustc [...] -- [...] [arg1] [arg2]`
rustc-extra-args = ""