From 43d0ab57e04e06c9377b26c6eb3dcc8ea385943a Mon Sep 17 00:00:00 2001 From: Baudouin Raoult Date: Wed, 9 May 2018 10:50:50 +0100 Subject: cdsapi --- README.rst | 1 + cdsapi/__init__.py | 0 setup.py | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 51 insertions(+) create mode 100644 README.rst create mode 100644 cdsapi/__init__.py create mode 100644 setup.py diff --git a/README.rst b/README.rst new file mode 100644 index 0000000..0db68d7 --- /dev/null +++ b/README.rst @@ -0,0 +1 @@ +Todo diff --git a/cdsapi/__init__.py b/cdsapi/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..d6cf052 --- /dev/null +++ b/setup.py @@ -0,0 +1,50 @@ +#!/usr/bin/env python3 +# + +import io +import os.path + +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 = '0.0.1' + + +setuptools.setup( + name='cdsapi', + version=version, + author='ECMWF', + author_email='software@ecmwf.int', + license='Apache 2.0', + url='https://software.ecmwf.int/stash/projects/CST/repos/cdscompute', + description="Climate Data Store API", + long_description=read('README.rst'), + packages=setuptools.find_packages(), + include_package_data=True, + setup_requires=[ + 'pytest-runner', + ], + install_requires=[ + 'requests', + ], + tests_require=[ + 'pytest', + ], + zip_safe=True, + classifiers=[ + 'Development Status :: 3 - Alpha', + 'Intended Audience :: Developers', + 'Programming Language :: Python', + 'Programming Language :: Python :: 3', + 'Programming Language :: Python :: 3.4', + 'Programming Language :: Python :: 3.5', + 'Programming Language :: Python :: 3.6', + 'Programming Language :: Python :: Implementation :: CPython', + 'Operating System :: OS Independent', + ], +) -- cgit v1.2.3