-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
32 lines (29 loc) · 991 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
30
31
32
import setuptools
import os
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="zarrdataset",
version=os.environ.get('VERSION', '0.0.0'),
maintainer="Fernando Cervantes",
maintainer_email="fernando.cervantes@jax.org",
description="Zarr-based dataset for PyTorch training pipelines. Written "
"and maintained by the Research IT team at The Jackson "
"Laboratory.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/TheJacksonLaboratory/zarrdataset",
packages=setuptools.find_packages(),
install_requires=[
'requests>=2.31.0',
'aiohttp>=3.7.4.post0,<4.0.0',
'botocore>=1.31.17,<1.31.18',
'boto3>=1.28.17,<1.28.18',
'fsspec>=2023.9.2',
's3fs>=0.4.2',
'zarr>=2.12.0',
'scikit-image>=0.19.3',
'poisson-disc>=0.2.1',
],
python_requires='>=3.9'
)