1[build-system]
2requires = ["hatchling"]
3build-backend = "hatchling.build"
5[project]
6name = "timeseries-entropy"
7version = "0.1.0"
8description = "Unbiased Monte-Carlo entropy estimation for quantized filtered Gaussian time series"
9readme = "README.md"
10requires-python = ">=3.9"
11dependencies = ["numpy>=1.22", "scipy>=1.8"]
13[project.scripts]
14timeseries-entropy = "timeseries_entropy.cli:main"
16[project.optional-dependencies]
17dev = ["pytest"]
19[tool.hatch.build.targets.wheel]
20packages = ["src/timeseries_entropy"]