diff --git a/cads_mars_server/__init__.py b/cads_mars_server/__init__.py index bcefd17..d3ec452 100644 --- a/cads_mars_server/__init__.py +++ b/cads_mars_server/__init__.py @@ -1 +1 @@ -__version__ = "0.1.6dev" +__version__ = "0.2.0" diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..4a0c147 --- /dev/null +++ b/setup.py @@ -0,0 +1,66 @@ +#!/usr/bin/env python +# (C) Copyright 2023 ECMWF. +# +# This software is licensed under the terms of the Apache Licence Version 2.0 +# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. +# In applying this licence, ECMWF does not waive the privileges and immunities +# granted to it by virtue of its status as an intergovernmental organisation +# nor does it submit to any jurisdiction. +# + + +import io +import os + +import setuptools + + +def read(fname): + file_path = os.path.join(os.path.dirname(__file__), fname) + return io.open(file_path, encoding="utf-8").read() + + +version = None +for line in read("cads_mars_server/__init__.py").split("\n"): + if line.startswith("__version__"): + version = line.split("=")[-1].strip()[1:-1] + + +assert version + + +setuptools.setup( + name="cads-mars-server", + version=version, + description="A python client/server for calling MARS.", + long_description=read("README.md"), + long_description_content_type="text/markdown", + author="European Centre for Medium-Range Weather Forecasts (ECMWF)", + author_email="software.support@ecmwf.int", + license="Apache License Version 2.0", + url="https://github.com/ecmwf-projects/cads-mars-server", + packages=setuptools.find_packages(), + include_package_data=True, + install_requires=[ + "click", + "requests", + "setproctitle", + ], + zip_safe=True, + keywords="tool", + entry_points={ + "console_scripts": ["cads-mars-server=cads_mars_server.__main__:main"], + }, + classifiers=[ + "Development Status :: 3 - Alpha", + "Intended Audience :: Developers", + "License :: OSI Approved :: Apache Software License", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: Implementation :: CPython", + "Programming Language :: Python :: Implementation :: PyPy", + "Operating System :: OS Independent", + ], +)