forked from AllenNeuralDynamics/poisson-numcodecs
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
39 lines (35 loc) · 1.19 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "anscombe_numcodecs"
version = "0.1.2"
authors = [
{ name = "Jerome Lecoq", email = "jeromel@alleninstitute.org" },
{ name = "Dimitri Yatsenko", email = "dimitr@datajoint.com" },
]
maintainers = [
{ name = "Dimitri Yatsenko", email = "dimitr@datajoint.com" },
]
license = { file = "LICENSE" }
description = "Numcodecs implementation for compressing photon-limited movies."
readme = "README.md"
requires-python = ">=3.8"
keywords = ["video compression", "numcodecs", "zarr", "compression algorithms", "multimedia", "multiphoton microscopy"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Multimedia :: Video",
"Topic :: Software Development :: Libraries",
]
dependencies = [
"numpy>=2.0",
"numcodecs>=0.1",
"scikit-learn",
]
# Dependencies will be managed via requirements.txt
[project.urls]
Homepage = "https://github.com/datajoint/anscombe-numcodecs"
Source = "https://github.com/datajoint/anscombe-numcodecs"
Issues = "https://github.com/datajoint/anscombe-numcodecs/issues"