-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
38 lines (34 loc) · 842 Bytes
/
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
[project]
name = "python-persistent-apbf"
version = "0.2.0"
description = "A S3 compatible persistent Age-Partitioned Bloom Filter implementation in Python"
readme = "README.md"
requires-python = ">=3.9"
dependencies = [
"mmh3>=5.0.1",
"pyarrow>=19.0.0",
]
authors = [
{ name = "Ananth Packkildurai" }
]
license = { text = "MIT" }
keywords = []
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
]
[project.urls]
Repository = "https://github.com/ananthdurai/python-persistent-apbf"
[tool.uv]
dev-dependencies = [
"pytest-asyncio>=0.25.2",
"pytest>=8.3.4",
"build>=1.0.3",
"twine>=4.0.2",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["apbf"]