-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (44 loc) · 1.32 KB
/
pyproject.toml
File metadata and controls
54 lines (44 loc) · 1.32 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
[project]
name = "roaringrel"
dynamic = ["version"]
authors = [{ name = "Hashberg" }]
description = "Implementation of integer relations based on roaring bitmaps."
readme = "README.rst"
requires-python = ">=3.13"
license = "LGPL-3.0"
license-files = ["LICENSE"]
dependencies = ["pyroaring >= 1.0.3"]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python :: 3.13",
"Natural Language :: English",
"Typing :: Typed",
]
[project.urls]
Documentation = "https://roaringrel.readthedocs.io"
Repository = "https://github.com/hashberg-io/roaringrel"
Issues = "https://github.com/hashberg-io/roaringrel/issues"
[build-system]
requires = ["hatchling == 1.26.3"]
build-backend = "hatchling.build"
[tool.black]
target-version = ["py314"]
[tool.mypy]
python_version = "3.14"
strict = true
[tool.pyright]
typeCheckingMode = "off"
reportInvalidTypeForm = false
[tool.hatch.version]
path = "roaringrel/__init__.py"
[tool.hatch.build.targets.wheel]
only-include = ["roaringrel"]
[tool.hatch.build.targets.wheel.sources]
"src" = ""
[tool.hatch.build.targets.sdist]
only-include = ["roaringrel", "README.rst", "LICENSE"]
[dependency-groups]
dev = ["pytest >= 8.4.2", "numpy >= 2.3.4"]