-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5 from ecmwf/feature/move_to_pyproject
Move to pyproject toml
- Loading branch information
Showing
14 changed files
with
104 additions
and
89 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
from .lib import MultioException # noqa: F401 | ||
from .metadata import Metadata # noqa: F401 | ||
from .multio import Multio # noqa: F401 | ||
|
||
try: | ||
# NOTE: the `version.py` file must not be present in the git repository | ||
# as it is generated by setuptools at install time | ||
from ._version import __version__ | ||
except ImportError: # pragma: no cover | ||
# Local copy or not installed with setuptools | ||
__version__ = "999" |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,60 +1,3 @@ | ||
import io | ||
import os | ||
import re | ||
from setuptools import setup | ||
|
||
import setuptools | ||
|
||
|
||
def read(path): | ||
file_path = os.path.join(os.path.dirname(__file__), *path.split("/")) | ||
return io.open(file_path, encoding="utf-8").read() | ||
|
||
|
||
# single-sourcing the package version using method 1 of: | ||
# https://packaging.python.org/guides/single-sourcing-package-version/ | ||
def parse_version_from(path): | ||
version_file = read(path) | ||
version_match = re.search(r'^__version__ = "(.*)"', version_file, re.M) | ||
if version_match is None or len(version_match.groups()) > 1: | ||
raise ValueError("couldn't parse version") | ||
return version_match.group(1) | ||
|
||
|
||
setuptools.setup( | ||
name="multiopython", | ||
version=parse_version_from("multiopython/__init__.py"), | ||
description="A Python interface to multio.", | ||
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/multio", | ||
packages=["multiopython"], | ||
package_data={"": ["*.h"]}, | ||
include_package_data=True, | ||
install_requires=[ | ||
"cffi", | ||
], | ||
extras_require={}, | ||
tests_require=[ | ||
"pytest", | ||
"pytest-cov", | ||
"pytest-flakes", | ||
], | ||
test_suite="tests", | ||
zip_safe=True, | ||
keywords="multio multiopython", | ||
classifiers=[ | ||
"Development Status :: 4 - Beta", | ||
"Intended Audience :: Developers", | ||
"License :: OSI Approved :: Apache Software License", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.5", | ||
"Programming Language :: Python :: 3.6", | ||
"Programming Language :: Python :: 3.7", | ||
"Programming Language :: Python :: Implementation :: CPython", | ||
"Programming Language :: Python :: Implementation :: PyPy", | ||
"Operating System :: OS Independent", | ||
], | ||
) | ||
setup() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters