-
-
Notifications
You must be signed in to change notification settings - Fork 33
/
pyproject.toml
50 lines (45 loc) · 1.16 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
38
39
40
41
42
43
44
45
46
47
48
49
50
[build-system]
requires = ["setuptools>=61.2", "versioneer[toml]==0.29"]
build-backend = "setuptools.build_meta"
[project]
name = "partd"
description = "Appendable key-value storage"
maintainers = [{name = "Matthew Rocklin", email = "[email protected]"}]
license = {text = "BSD"}
keywords = []
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
readme = "README.rst"
urls = {Homepage = "http://github.com/dask/partd/"}
requires-python = ">=3.9"
dynamic = ["version"]
dependencies = [
"locket",
"toolz",
]
[project.optional-dependencies]
complete = [
"numpy >= 1.20.0",
"pandas >=1.3",
"pyzmq",
"blosc",
]
[tool.setuptools]
packages = ["partd"]
zip-safe = false
include-package-data = false
[tool.versioneer]
VCS = "git"
style = "pep440"
versionfile_source = "partd/_version.py"
versionfile_build = "partd/_version.py"
tag_prefix = ""
parentdir_prefix = "partd-"
[tool.pytest.ini_options]
addopts = "--strict-markers --strict-config"
filterwarnings = ["error"]