Newer
Older
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""The setup script."""
from setuptools import setup, find_packages
requirements = [
"Click>=6.0",
"xarray",
"cdo@git+https://github.com/Try2Code/cdo-bindings#egg=pkg&subdirectory=python",
"netcdf4",
]
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English",
"Programming Language :: Python :: 3.6",
],
description="GFW Creator allows you to generate files for the gfw_atmo switch in ECHAM6/JSBACH of AWI-ESM",
entry_points={
"console_scripts": ["gfw_creator=gfw_creator.cli:main",],
"esm_tools.plugins": [
"create_hosing_files=gfw_creator.esm_tools_plugin:create_hosing_files",
],
},
install_requires=requirements,
license="GNU General Public License v3",
keywords="gfw_creator",
name="gfw_creator",
packages=find_packages(include=["gfw_creator"]),
url="https://github.com/pgierz/gfw_creator",
version="0.0.2",