-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (35 loc) · 1.07 KB
/
pyproject.toml
File metadata and controls
39 lines (35 loc) · 1.07 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
[project]
name = "binjamin"
version = "0.2.0"
description = "Bin width estimation and lattice geometry — from data to measurement space"
readme = "README.md"
license = { text = "MIT" }
authors = [
{ name = "Shun Richard Honda", email = "shun.honda@adelic.org" }
]
keywords = ["binning", "histogram", "bin-width", "lattice", "factorization", "p-adic", "multiscale", "freedman-diaconis", "bayesian-blocks"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Information Analysis",
]
requires-python = ">=3.12"
dependencies = [
"numpy>=1.24",
]
[project.urls]
Homepage = "https://github.com/adelic-ai/binjamin"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/binjamin"]
[dependency-groups]
dev = [
"pytest>=8.0",
"twine>=6.2.0",
]