-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
20 lines (19 loc) · 933 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import setuptools
setuptools.setup(name='bpnsdata',
version='0.1.11',
description='Add Belgian Part of the North Sea (BPNS) marine environmental data to a geodataframe',
author='Clea Parcerisas',
author_email='[email protected]',
url="https://github.com/lifewatch/bpnsdata.git",
license='',
packages=setuptools.find_packages(),
install_requires=['owslib', 'pygeos', 'tqdm', 'erddapy', 'rioxarray', 'skyfield', 'netcdf4',
'contextily', 'geopandas'],
extras_require={
"time": ["skyfield"],
"griddap": ["erddapy", 'xarray']
},
package_data={
"bpnsdata": ["data/*.*"]
},
zip_safe=False)