diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d2c1c28..f0fd90a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -5,6 +5,8 @@ on: branches: [ main ] pull_request: branches: [ main ] + schedule: + - cron: "7 18 * * 0" jobs: build: @@ -12,8 +14,9 @@ jobs: runs-on: ubuntu-latest strategy: + max-parallel: 2 matrix: - python-version: [3.6, 3.7, 3.8, 3.9] + python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"] steps: - uses: actions/checkout@v2 diff --git a/.gitignore b/.gitignore index 43091aa..c545b16 100644 --- a/.gitignore +++ b/.gitignore @@ -24,6 +24,7 @@ wheels/ *.egg-info/ .installed.cfg *.egg +version.py # PyInstaller # Usually these files are written by a python script from a template diff --git a/OceanColor/__init__.py b/OceanColor/__init__.py index 1a4e83a..84e043e 100644 --- a/OceanColor/__init__.py +++ b/OceanColor/__init__.py @@ -7,7 +7,20 @@ __author__ = """Guilherme Castelão""" __email__ = "guilherme@castelao.net" -__version__ = "0.0.10" + +from pkg_resources import get_distribution, DistributionNotFound + +try: + __version__ = get_distribution(__name__).version +except DistributionNotFound: + try: + from .version import version as __version__ + except ImportError: + raise ImportError( + "Failed to find (autogenerated) version.py. " + "This might be because you are installing from GitHub's tarballs, " + "use the PyPI ones." + ) # Recent OSX requires this environment variable to run parallel processes if sys.platform == "darwin": diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..26986d9 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,67 @@ +[build-system] +requires = [ + "setuptools >= 48", + "setuptools_scm[toml] >= 4", + "setuptools_scm_git_archive", + "milksnake", + "wheel >= 0.29.0", +] +build-backend = 'setuptools.build_meta' + +[project] +name="OceanColor" +dynamic = ['version'] +description="Deal with NASA Ocean Color data (search and download)" +readme = "README.rst" +requires-python = ">=3.8" +license = {file = "LICENSE"} +keywords=["NASA", "Ocean Color", "chlorophyll", "oceanography", "matchup"] +authors = [ + {email = "guilherme@castelao.net"}, + {name = "Guilherme Castelao"} +] +classifiers=[ + "Development Status :: 4 - Beta", + "Intended Audience :: Science/Research", + "License :: OSI Approved :: BSD License", + "Natural Language :: English", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.8", + "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", + "Topic :: Scientific/Engineering", +] +dependencies = [ + "Click >= 7.1.1", + "numpy >= 1.17", + "h5netcdf >= 0.8", + "h5py >= 2.10", + "tables >= 3.6", + "netCDF4 >= 1.5", + "pandas >= 1.1", + "pyproj >= 2.6", + "requests >= 2.23", + "xarray >= 0.16", +] + +[project.optional-dependencies] +parallel = ["loky >= 2.8"] +s3 = [ + "s3fs >= 2022.1.0", + "zarr>=2.8.1" + ] + +[project.urls] +homepage = "github.com/castelao/OceanColor" +documentation = "oceancolor.readthedocs.io" +repository = "github.com/castelao/OceanColor" + +[project.scripts] +"OceanColor" = "OceanColor.cli:main" + +[tool.black] +line-length = 79 + +[tool.setuptools_scm] +write_to = "OceanColor/version.py" +git_describe_command = "git describe --dirty --tags --long --match 'v*' --first-parent" diff --git a/setup.cfg b/setup.cfg index dba3ee3..1e718c4 100644 --- a/setup.cfg +++ b/setup.cfg @@ -11,10 +11,6 @@ replace = version="{new_version}" search = version: "{current_version}" replace = version: "{new_version}" -[bumpversion:file:OceanColor/__init__.py] -search = __version__ = "{current_version}" -replace = __version__ = "{new_version}" - [bdist_wheel] universal = 1 @@ -24,9 +20,6 @@ ignore = E203 E501 -[aliases] -test = pytest - [tool:pytest] collect_ignore = ['setup.py'] diff --git a/setup.py b/setup.py index 0af377c..27e8d4a 100644 --- a/setup.py +++ b/setup.py @@ -14,46 +14,16 @@ def requirements(): with open('requirements.txt') as f: return f.read() -setup_requirements = ['pytest-runner', ] - -test_requirements = ['pytest>=3', ] - setup( - author="Guilherme Castelão", - author_email='guilherme@castelao.net', - python_requires='>=3.6', - classifiers=[ - 'Development Status :: 4 - Beta', - 'Intended Audience :: Developers', - 'License :: OSI Approved :: BSD License', - 'Natural Language :: English', - 'Programming Language :: Python :: 3', - 'Programming Language :: Python :: 3.6', - 'Programming Language :: Python :: 3.7', - 'Programming Language :: Python :: 3.8', - 'Programming Language :: Python :: 3.9', - ], - description="Deal with NASA Ocean Color data (search and download)", entry_points={ 'console_scripts': [ 'OceanColor=OceanColor.cli:main', ], }, install_requires=requirements(), - license="BSD license", long_description=readme + '\n\n' + history, include_package_data=True, - keywords='NASA Ocean Color chlorophyll oceanography matchup', name='OceanColor', packages=find_packages(include=['OceanColor', 'OceanColor.*']), - setup_requires=setup_requirements, - test_suite='tests', - tests_require=test_requirements, - url='https://github.com/castelao/OceanColor', - version="0.0.10", zip_safe=False, - extras_require = { - 'parallel': ["loky>=2.8"], - 's3':['s3fs>=2022.1.0', 'zarr>=2.8.1'], - } ) diff --git a/tests/test_inrange.py b/tests/test_inrange.py index 511e738..01b237a 100644 --- a/tests/test_inrange.py +++ b/tests/test_inrange.py @@ -9,6 +9,7 @@ import pandas as pd from pandas import DataFrame +import pytest from OceanColor.inrange import matchup_L2, matchup_L3m, matchup from OceanColor.storage import OceanColorDB, FileSystem @@ -85,6 +86,7 @@ def test_matchup(): assert data.size == 42 +@pytest.mark.skip() def test_InRange_recent(): """Find recent in range diff --git a/tests/test_storage.py b/tests/test_storage.py index 39f138e..b8809dc 100644 --- a/tests/test_storage.py +++ b/tests/test_storage.py @@ -110,7 +110,6 @@ def test_no_download(): # It was not supposed to reach here raise - @pytest.mark.skipif(not S3FS_AVAILABLE, reason="S3Storage is not available without s3fs") def test_S3Storage_path(): backend = S3Storage("s3://mybucket/datadir")