-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
29 lines (25 loc) · 829 Bytes
/
setup.py
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
"""
For more detailed information, please check the accompanying README.md.
"""
from pathlib import Path
from setuptools import find_packages, setup
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(
name="ocf_blosc2",
version="0.0.14",
license="MIT",
description="""OCF Blosc2 is a codec for numcodecs for compressing image data in Zarr/Xarray""",
author="Jacob Bieker",
author_email="[email protected]",
company="Open Climate Fix Ltd",
install_requires=["numpy", "blosc2", "numcodecs", "zarr>3"],
long_description=long_description,
long_description_content_type="text/markdown",
packages=find_packages(),
entry_points={
"numcodecs.codecs": [
"blosc2 = ocf_blosc2:Blosc2",
],
},
)