forked from ome/ome-zarr-py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
59 lines (51 loc) · 1.82 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
#!/usr/bin/env python
import codecs
import os
from typing import List
from setuptools import setup
def read(fname):
file_path = os.path.join(os.path.dirname(__file__), fname)
return codecs.open(file_path, encoding="utf-8").read()
install_requires: List[List[str]] = []
install_requires += (["dataclasses;python_version<'3.7'"],)
install_requires += (["tifffile<2020.09.22;python_version<'3.7'"],)
install_requires += (["numpy"],)
install_requires += (["dask"],)
install_requires += (["zarr"],)
install_requires += (["s3fs"],)
install_requires += (["aiohttp"],)
install_requires += (["requests"],)
install_requires += (["scikit-image"],)
install_requires += (["toolz"],)
install_requires += (["vispy"],)
install_requires += (["opencv-contrib-python-headless"],)
setup(
name="ome-zarr",
version="0.0.16.dev0",
author="The Open Microscopy Team",
url="https://github.com/ome/ome-zarr-py",
description="Implementation of images in Zarr files.",
long_description=read("README.rst"),
packages=["ome_zarr"],
py_modules=["ome_zarr"],
python_requires=">=3.6",
install_requires=install_requires,
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"License :: OSI Approved :: BSD License",
"Framework :: napari",
],
entry_points={
"console_scripts": ["ome_zarr = ome_zarr.cli:main"],
"napari.plugin": ["ome_zarr = ome_zarr.napari"],
"pytest11": ["napari-conftest = napari.conftest"],
},
extras_require={"napari": ["napari"]},
tests_require=["pytest"],
)