-
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (31 loc) · 793 Bytes
/
pyproject.toml
File metadata and controls
36 lines (31 loc) · 793 Bytes
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
[project]
name = "cramjam"
version = "2.12.0-rc1"
keywords = ["compression", "decompression", "snappy", "zstd", "bz2", "gzip", "lz4", "brotli", "deflate", "blosc2"]
requires-python = ">=3.9"
license = { file = "LICENSE" }
[project.urls]
homepage = "https://github.com/milesgranger/pyrus-cramjam"
documentation = "https://docs.rs/cramjam/latest/cramjam"
repository = "https://github.com/milesgranger/pyrus-cramjam"
[build-system]
requires = ["maturin>=0.14"]
build-backend = "maturin"
[tool.maturin]
python-source = "src"
strip = true
[dependency-groups]
dev = [
"ipython>=8.12.3",
"pyright>=1.1.399",
"ruff-lsp>=0.0.62",
]
[project.optional-dependencies]
dev = [
"black==22.3.0",
"numpy",
"pytest>=5.30",
"pytest-xdist",
"pytest-benchmark",
"hypothesis==6.60.0"
]