-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
69 lines (63 loc) · 1.91 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
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
[project]
name = "ducer"
description = "Fast and compact maps and sets with Billions of keys, based on finite-state-transducers."
readme = { file = "README.md", content-type = "text/markdown" }
authors = [{ name = "Joachim Folz", email = "[email protected]" }]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: MIT License",
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
"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",
]
keywords = [
"big data",
"compression",
"dataset",
"dict",
"finite-state-machines",
"finite-state-transducers",
"frozen",
"fst",
"map",
"serialization",
"set",
"streaming",
]
requires-python = ">=3.8"
dynamic = ["version"]
license = { file = "LICENSE" }
[project.urls]
Homepage = "https://github.com/jfolz/ducer"
Documentation = "https://ducer.readthedocs.io/stable/"
Repository = "https://github.com/jfolz/ducer"
Issues = "https://github.com/jfolz/ducer/issues"
Changelog = "https://github.com/jfolz/ducer/blob/main/CHANGELOG.md"
[tool.setuptools_scm]
[tool.setuptools]
packages = ["ducer"]
[build-system]
requires = [
"setuptools>=71.1.0",
"setuptools-rust>=1.9.0",
"setuptools_scm>=8.1.0",
]
build-backend = "setuptools.build_meta"
[[tool.setuptools-rust.ext-modules]]
target = "ducer._fst"
path = "rust/Cargo.toml"
binding = "PyO3"
args = ["--profile", "prod"]
[tool.cibuildwheel]
skip = "*_i686 pp* *musllinux* *-win32"
build-verbosity = 1
build-frontend = "build"
test-requires = "pytest>=8.3.1"
test-command = "pytest {project}/tests -vv"