-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
30 lines (27 loc) · 930 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "DSFD"
version = "1.2.0.dev"
dependencies = ["numpy", "scipy", "pandas", "pympler"]
requires-python = ">=3.12"
authors = [{ name = "Hanyan Yin", email = "[email protected]" }]
maintainers = [{ name = "Hanyan Yin", email = "[email protected]" }]
description = "Dump Snapshot Frequent Directions for matrix sketching over sliding windows. "
readme = "README.md"
license = { file = "LICENSE" }
keywords = [
"frequent directions",
"matrix sketching",
"sliding windows",
"streaming algorithm",
]
[project.urls]
# Homepage = "https://example.com"
# Documentation = "https://readthedocs.org"
Repository = "https://github.com/yinhanyan/DS-FD"
# "Bug Tracker" = "https://github.com/me/spam/issues"
# Changelog = "https://github.com/me/spam/blob/master/CHANGELOG.md"
[tool.hatch.build.targets.wheel]
packages = ["src/dsfd"]