-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
57 lines (51 loc) · 1.52 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
import io, re
from setuptools import setup
with io.open("README.rst", "rt", encoding="utf8") as f:
readme = f.read()
with io.open("gridwxcomp/__init__.py", "rt", encoding="utf8") as f:
version = re.search(r"__version__ = \'(.*?)\'", f.read()).group(1)
requires = [
'bokeh>=1.0.4',
'fiona>=1.7.13,<1.10.0',
'gdal',
'netCDF4',
'numpy>=1.15',
'openpyxl',
'pandas>=0.24',
'rasterstats>=0.13',
'refet>=0.3.7',
'scipy>=1.1.0',
'shapely',
'xlrd>=1.2.0',
'geopandas',
'earthengine-api',
'pyproj'
]
tests_require = ['pytest']
classifiers = [
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3.11',
'Environment :: Console',
'Development Status :: 4 - Beta',
'Topic :: Scientific/Engineering',
'Intended Audience :: Science/Research'
]
setup(
name='gridwxcomp',
version=version,
description='Compare meterological station data to gridded data',
long_description=readme,
author='John Volk, Christian Dunkerly, and Chris Pearson',
author_email='[email protected]',
license='Apache',
url='https://github.com/WSWUP/gridwxcomp',
download_url='https://github.com/WSWUP/gridwxcomp/archive/v0.1.0.tar.gz',
platforms=['Windows','Linux','Mac OS X'],
classifiers=classifiers,
packages=['gridwxcomp'],
install_requires=requires,
tests_require=tests_require,
package_data={'gridwxcomp': ['example_data/*'],
'gridwxcomp': ['env/*.yml']},
include_package_data=True
)