Skip to content

Commit

Permalink
add setup.py for python3.6
Browse files Browse the repository at this point in the history
  • Loading branch information
b8raoult committed May 22, 2024
1 parent 6eddf4f commit a062da3
Show file tree
Hide file tree
Showing 2 changed files with 67 additions and 1 deletion.
2 changes: 1 addition & 1 deletion cads_mars_server/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.1.6dev"
__version__ = "0.2.0"
66 changes: 66 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -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",
],
)

0 comments on commit a062da3

Please sign in to comment.