File: pyproject.toml

package info (click to toggle)
blake3-py 1.0.8-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,020 kB
  • sloc: asm: 17,520; ansic: 4,109; python: 598; makefile: 15
file content (40 lines) | stat: -rw-r--r-- 927 bytes parent folder | download
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
[project]
name = "blake3"
# http://maturin.rs/metadata.html#dynamic-metadata
dynamic = [
    "version",
    "description",
    "readme",
    "urls",
    "authors",
    "license",
    "keywords",
]
# keep python versions in sync with
#   - .github/workflows/dists.yml
#   - .github/workflows/tests.yml
requires-python = ">=3.8"
# keep dependencies in sync with c_impl/setup.py
dependencies = [
    "typing_extensions >= 4.6.0; python_version <= '3.11'",
]
classifiers = [
  "Development Status :: 5 - Production/Stable",
  "Programming Language :: Python",
  "Programming Language :: Python :: 3 :: Only",
  "Programming Language :: Python :: Free Threading",
  "Programming Language :: Rust",
  "Topic :: Security",
  "Topic :: Security :: Cryptography",
  "Topic :: Utilities",
]

[build-system]
requires = ["maturin>=1.0,<2"]
build-backend = "maturin"

[dependency-groups]
dev = [
    "numpy>=1.24.4",
    "pytest>=8.3.5",
]