-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
29 lines (27 loc) · 821 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
29
from setuptools import setup
setup(
name='gridspec',
version='0.1.0',
author="Liam Bindle",
author_email="liam.bindle@gmail.com",
description="A small package for working with gridspec files for offline regridding of earth system model data.",
url="https://github.com/LiamBindle/gridspec",
project_urls={
"Bug Tracker": "https://github.com/LiamBindle/gridspec/issues",
},
packages=['gridspec', 'gridspec.misc', 'gridspec.gnom_cube_sphere'],
install_requires=[
'pygeohash',
'netcdf4',
'xarray',
'numpy',
'click',
],
entry_points="""
[console_scripts]
gridspec-create=gridspec.cli:create
gridspec-utils=gridspec.cli:utils
gridspec-dump=gridspec.cli:dump
""",
python_requires='>=3.6',
)