forked from makepath/xarray-spatial
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (26 loc) · 825 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
from setuptools import setup
setup(name='xarray-spatial',
use_scm_version={
"write_to": "xrspatial/_version.py",
"write_to_template": '__version__ = "{version}"',
"tag_regex": r"^(?P<prefix>v)?(?P<version>[^\+]+)(?P<suffix>.*)?$",
},
description='xarray-based spatial analysis tools',
packages=['xrspatial',
'xrspatial.tests'],
install_requires=[
'dask',
'datashader',
'numba',
'numpy',
'pandas',
'pillow',
'requests',
'scipy',
'xarray',
],
zip_safe=False,
classifiers=["Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"],
include_package_data=True)