-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
36 lines (30 loc) · 1.07 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""The setup script."""
from setuptools import setup, find_packages
with open("README.rst") as readme_file:
readme = readme_file.read()
with open("HISTORY.rst") as history_file:
history = history_file.read()
import xarray_video
setup(
author="Oceanum Developers",
author_email="developers@oceanum.science",
description="Xarray accessor and zarr codec for storing and accessing time and/or space stacked video",
entry_points={},
install_requires=["xarray", "numcodecs", "av", "zarr"],
license="MIT license",
long_description=readme + "\n\n" + history,
include_package_data=True,
keywords="oceanum,video,xarray",
documentation="https://xarray-video.readthedocs.io",
name="xarray-video",
packages=find_packages(exclude=["tests", "docs"]),
setup_requires=["pytest-runner"],
test_suite="tests",
tests_require=["pytest"],
url="https://github.com/oceanum/xarray-video",
version=xarray_video.__version__,
zip_safe=False,
extras_require={"plotting": ["matplotlib"]},
)