-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
executable file
·54 lines (47 loc) · 1.42 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
from setuptools import find_packages, setup
with open("README.rst") as readme_file:
readme = readme_file.read()
requirements = [
"astropy",
"numpy",
"scipy",
"xmltodict",
"imagecodecs",
"zarr",
"dask",
"xarray",
"scikit-image>=0.18",
"xtiff",
"tifffile>=2021.7.2",
"s3fs>=2022.2.0",
]
extras_requirements = {"pyviz": ["matplotlib", "holoviews", "datashader"]}
setup_requirements = ["pytest-runner", "flake8"]
test_requirements = ["coverage", "pytest", "pytest-cov", "pytest-mock"]
setup(
author="Eduardi Gonzalez Solares",
maintainer="Eduardo Gonzalez Solares",
maintainer_email="[email protected]",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3.7",
],
description="IMAXT Image Utilities",
install_requires=requirements,
license="GNU General Public License v3",
long_description=readme,
include_package_data=True,
keywords="imaxt",
name="imaxt-image",
packages=find_packages(include=["imaxt*"]),
setup_requires=setup_requirements,
extras_requires=extras_requirements,
test_suite="tests",
tests_require=test_requirements,
url="https://github.com/IMAXT/imaxt-image",
version="0.17.4",
zip_safe=False,
python_requires=">=3.7",
)