Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix release badge and cite paper #33

Merged
merged 8 commits into from
Jun 21, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 0 additions & 13 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -109,15 +109,6 @@ jobs:
- uses: actions/checkout@v3
with:
fetch-depth: 3 # enable full clone to download Git LFS files
# - uses: actions/checkout@master
# - uses: codecov/codecov-action@v3
# with:
# token: ${{ secrets.CODECOV_TOKEN }}
# # files: ./coverage1.xml,./coverage2.xml # optional
# # flags: unittests # optional
# name: codecov-umbrella # optional
# fail_ci_if_error: true # optional (default = false)
# verbose: true # optional (default = false)
- name: Change write permission
run: chmod -R 777 ./tests/data/
- name: Install Git LFS
Expand All @@ -142,10 +133,6 @@ jobs:
python -m pip install -r requirements.txt
python -m pip install -r ./tests/requirements_test.txt

# - name: Create code cov report
# run: |
# pytest --cov=./ --cov-report=xml tests

- name: Verify Source Distribution
shell: bash -eux {0}
run: |
Expand Down
64 changes: 6 additions & 58 deletions readme.md
Original file line number Diff line number Diff line change
@@ -1,72 +1,17 @@
<!-- <h2 align="center" margin=0px> -->
<!-- <p float="left"> -->
<!-- <div align="center">
<p align="center">
<!-- ![my image](./docs/images/logo.gif#center) -->
<!-- <img src="./docs/images/logo.gif" align="left" margin=10px width="300" height="300">

<h3 align="center">
<!-- <h2> -->
<!-- <br>
<br>
<br>
Feature Extraction
</br> for Datacubes
</h3>
</p>
</div>

<br clear="left"/> -->


<!-- ![my image](./docs/images/logo.gif#center) -->
<!-- <img src="./docs/images/logo.gif" align="left" margin=10px width="300" height="300"> -->

<h3 align="center">
<!-- <h2> -->
<img src="./docs/images/polytope_logo_new_animated_AdobeExpress_3.gif" width=60%>
</br>
<!-- </br>
</br>
</br>
</br>
</br> -->

</h3>
<!--
</br>
</br>
</br>
</br>
</br>
</br> -->
<!-- </p>
</div> -->

<!-- <br clear="left"/> -->
<!-- <br> -->
<!-- <br> -->
<!-- <div id="container">
<div class="content_left">
<h5>Feature Extraction for Datacubes</h5>
<hr/>
</div>
<div class="content_right">
<img src="./docs/images/logo.gif" width="400" height="400">
</div>
</div> -->

<!-- [![GitHub release](https://img.shields.io/github/release/Naereen/StrapDown.js.svg)](https://github.com/ecmwf/polytope/releases/) -->
<!-- ![example event parameter](https://github.com/github/docs/actions/workflows/main.yml/badge.svg?event=push)
[![GitHub tag](https://img.shields.io/github/tag/MichaelCurrin/badge-generator?include_prereleases=&sort=semver)](https://github.com/ecmwf/polytope/releases/)
[![Documentation Status](https://readthedocs.org/projects/polytope/badge/?version=latest)](https://polytope.readthedocs.io/en/latest/?badge=latest) -->
<!-- [![ci](https://github.com/ecmwf/polytope/actions/workflows/ci.yaml/badge.svg)](https://github.com/ecmwf/polytope/actions/workflows/ci.yaml) -->

<p align="center">
<a href="https://github.com/ecmwf/polytope/actions/workflows/ci.yaml">
<img src="https://github.com/ecmwf/polytope/actions/workflows/ci.yaml/badge.svg" alt="ci">
</a>
<a href="https://codecov.io/gh/ecmwf/polytope"><img src="https://codecov.io/gh/ecmwf/polytope/branch/develop/graph/badge.svg"></a>
<a href="https://opensource.org/licenses/Apache-2.0"><img src="https://img.shields.io/badge/License-Apache%202.0-blue.svg"></a>
<a href="https://github.com/ecmwf/polytope/releases"><img src="https://img.shields.io/badge/Release-v0.0.1-blue.svg"></a>
<a href="https://github.com/ecmwf/polytope/releases"><img src="https://img.shields.io/github/v/release/ecmwf/polytope?color=blue&label=Release&style=flat-square"></a>
<a href='https://polytope.readthedocs.io/en/latest/?badge=latest'><img src='https://readthedocs.org/projects/polytope/badge/?version=latest' alt='Documentation Status' /></a>
</p>
<p align="center">
Expand Down Expand Up @@ -122,6 +67,9 @@ The Polytope algorithm can for example be used to extract:

- and many more high-dimensional shapes in arbitrary dimensions...

For more information about the Polytope algorithm, refer to our [paper] (https://arxiv.org/abs/2306.11553).
If this project is useful for your work, please consider citing this paper.

## Installation

Install the polytope software with Python 3 (>=3.7) from GitHub directly with the command
Expand Down
4 changes: 4 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@
name="polytope-python",
version=__version__,
description="Polytope datacube feature extraction library",
long_description="""Polytope is a library for extracting complex data from datacubes. It provides an API for
non-orthogonal access to data, where the stencil used to extract data from the datacube can be
any arbitrary n-dimensional polygon (called a polytope). This can be used to efficiently
extract complex features from a datacube, such as polygon regions or spatio-temporal paths.""",
url="https://github.com/ecmwf/polytope",
author="ECMWF",
author_email="James.Hawkes@ecmwf.int, Mathilde.Leuridan@ecmwf.int",
Expand Down