-
-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (31 loc) · 807 Bytes
/
pyproject.toml
File metadata and controls
36 lines (31 loc) · 807 Bytes
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
[build-system]
requires = [
"setuptools>=68.2.2",
"setuptools-scm[toml]>=6.2",
"Cython",
"numpy>=2.0.0",
"versioneer[toml]",
]
build-backend = "setuptools.build_meta:__legacy__"
[project]
name = "crick"
description="High performance approximate and streaming algorithms"
maintainers = [{name = "Jim Crist", email = "crist042@umn.edu"}]
license = {text = "BSD-3-Clause"}
readme = "README.rst"
requires-python = ">=3.10"
dynamic = ["version"]
[project.urls]
Source = "https://github.com/dask/crick"
[tool.setuptools]
include-package-data = true
zip-safe = false
[tool.setuptools.packages.find]
namespaces = false
[tool.versioneer]
VCS = "git"
style = "pep440"
versionfile_source = "crick/_version.py"
versionfile_build = "crick/_version.py"
tag_prefix = ""
parentdir_prefix = "crick-"