forked from glitzflitz/pyxorfilter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
64 lines (52 loc) · 1.54 KB
/
pyproject.toml
File metadata and controls
64 lines (52 loc) · 1.54 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
[tool.setuptools]
py-modules = []
# cffi-modules handled in setup.py
[project]
name = "pyfusefilter"
version = "1.2.1"
description = "Python bindings for C implementation of xor and fuse filters"
authors = [
{name = "Amey Narkhede", email = "ameynarkhede02@gmail.com"},
{name = "Daniel Lemire", email = "daniel@lemire.me"},
]
dependencies = ["cffi", "xxhash"]
readme = "README.md"
license = {file = "LICENSE"}
requires-python = ">=3.0"
[project.urls]
Homepage = "https://github.com/FastFilter/pyfusefilter"
[build-system]
requires = ["setuptools", "wheel", "cffi"]
build-backend = "setuptools.build_meta"
[tool.cibuildwheel]
environment = { PIP_GLOBAL_OPTION="build_ext", PIP_NO_BUILD_ISOLATION="1" , CIBUILDWHEEL="1" }
build-frontend = "pip"
[tool.cibuildwheel.linux]
before-all = "yum install -y libffi-devel"
[tool.cibuildwheel.macos]
before-all = "brew install libffi"
[[tool.cibuildwheel.overrides]]
select = "*-manylinux2_*"
before-all = "apt-get -y install libffi-dev"
[[tool.cibuildwheel.overrides]]
select = "*-musllinux*"
before-all = "apk add libffi-dev"
[tool.pdoc]
# pdoc configuration
name = "pyfusefilter"
description = "Python bindings for C implementation of xor and fuse filters"
version = "1.2.1"
author = "Amey Narkhede & Daniel Lemire"
author_email = "daniel@lemire.me"
url = "https://github.com/FastFilter/pyfusefilter"
# Documentation settings
docstring_style = "google"
show_source = true
search = true
math = false
# Output settings
output_directory = "docs"
force = true
html = true
# Module settings
modules = ["pyfusefilter"]