-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
41 lines (35 loc) · 1.11 KB
/
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
30
31
32
33
34
35
36
37
38
39
40
41
# -*- coding: utf-8 -*-
#
# Copyright (c) 2021 Glencoe Software, Inc. All rights reserved.
#
# This software is distributed under the terms described by the LICENSE.txt
# file you can find at the root of the distribution bundle. If the file is
# missing please request a copy by contacting [email protected]
from setuptools import setup, find_packages
import os
import version
def read(fname):
"""
Utility function to read the README file.
:rtype : String
"""
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='zarr-jpeg2k',
version=version.getVersion(),
description='JPEG-2000 Compression for zarr chunks',
long_description=read('README.md'),
long_description_content_type='text/markdown',
author='Glencoe Software, Inc.',
author_email='[email protected]',
maintainer=None,
maintainer_email=None,
url='https://github.com/glencoesoftware/zarr-jpeg2k',
packages=find_packages(),
install_requires=[
'imagecodecs==2021.8.26',
'numcodecs==0.9.1',
'numpy>=1.15'
],
python_requires='>=3.7'
)