-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
37 lines (35 loc) · 1.17 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
[build-system]
requires = ["setuptools", "wheel"]
[project]
authors = [
{name = "OldPanda", email = "[email protected]"},
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"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",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"bitarray==2.9.2",
"mmh3==4.1.0",
]
description = "Yet another bloomfilter implementation in Python"
keywords = ["bloomfilter"]
license = {file = "LICENSE"}
name = "bloomfilter-py"
readme = {file = "README.md", content-type = "text/markdown"}
requires-python = ">=3.8"
version = "1.dev0"
[project.urls]
Documentation = "https://github.com/OldPanda/bloomfilter-py/blob/master/README.md"
Homepage = "https://github.com/OldPanda/bloomfilter-py"
Repository = "https://github.com/OldPanda/bloomfilter-py.git"