-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (45 loc) · 1.1 KB
/
pyproject.toml
File metadata and controls
49 lines (45 loc) · 1.1 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
[project]
name = "blooms"
version = "3.0.0"
description = "Lightweight Bloom filter data structure derived from the built-in bytearray type."
license = "MIT"
authors = [
{name = "Andrei Lapets"},
{email = "a@lapets.io"}
]
readme = "README.rst"
requires-python = ">=3.9"
[project.urls]
Repository = "https://github.com/nthparty/blooms"
Documentation = "https://blooms.readthedocs.io"
[project.optional-dependencies]
docs = [
"toml~=0.10.2",
"sphinx~=7.4",
"sphinx-rtd-theme~=3.0",
"sphinx-autodoc-typehints~=2.3"
]
test = [
"pytest~=7.4; python_version < '3.12'",
"pytest~=8.4; python_version >= '3.12'",
"pytest-cov~=4.1; python_version < '3.12'",
"pytest-cov~=7.0; python_version >= '3.12'"
]
lint = [
"pylint~=2.17.0; python_version < '3.12'",
"pylint~=3.3.0; python_version >= '3.12'"
]
coveralls = [
"coveralls~=4.0"
]
publish = [
"build~=0.10",
"twine~=4.0"
]
[build-system]
requires = [
"setuptools>=77.0"
]
build-backend = "setuptools.build_meta"
[tool.pytest.ini_options]
addopts = "--doctest-modules --ignore=docs --cov=blooms --cov-report term-missing"