-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
50 lines (46 loc) · 1.55 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
from io import open as io_open
import os
from setuptools import setup
dirname = os.path.dirname(__file__)
readme_file = os.path.join(dirname, "README.md")
if os.path.exists(readme_file):
with io_open(readme_file, "r", encoding="utf-8") as f:
long_description = f.read()
else:
# When this is first installed in development Docker, README.md is not available
long_description = ""
# major, minor, patch
version_info = 0, 1, 7
# Nice string for the version
__version__ = ".".join(map(str, version_info))
setup(
name="pyvista-xarray",
version=__version__,
description="xarray DataArray accessors for PyVista",
long_description=long_description,
long_description_content_type="text/markdown",
author="Kitware, Inc.",
author_email="kitware@kitware.com",
url="https://github.com/pyvista/pyvista-xarray",
packages=["pvxarray"],
include_package_data=True,
classifiers=[
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python",
],
python_requires=">=3.9",
install_requires=[
"xarray>=2022.12.0", # Broke between 2022.9-11
"pyvista>=0.37",
"scooby",
],
entry_points={
"xarray.backends": ["pyvista=pvxarray.io:PyVistaBackendEntrypoint"],
},
)