Skip to content

Commit db2bbb5

Browse files
committed
Remove broken pypi distribution
1 parent 7b81f9d commit db2bbb5

File tree

5 files changed

+13
-59
lines changed

5 files changed

+13
-59
lines changed

README.md

Lines changed: 2 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
# ![](figures/magnipore_logo.png)
22

3-
[![License: GPL v3](https://img.shields.io/badge/License-GPL%20v3-teal.svg)](https://www.gnu.org/licenses/gpl-3.0)![PyPI - Python Version](https://img.shields.io/pypi/pyversions/magnipore)![conda](https://img.shields.io/badge/Uses-conda-green.svg)
4-
5-
[![PyPI](https://img.shields.io/pypi/v/magnipore) ![PyPI - Downloads](https://img.shields.io/pypi/dm/magnipore) ![PyPI - Status](https://img.shields.io/pypi/status/magnipore)](https://pypi.org/project/magnipore/)
3+
[![License: GPL v3](https://img.shields.io/badge/License-GPL%20v3-teal.svg)](https://www.gnu.org/licenses/gpl-3.0)![conda](https://img.shields.io/badge/Uses-conda-green.svg)
64

75
[![Conda package](https://anaconda.org/jannessp/magnipore/badges/version.svg)](https://anaconda.org/jannessp/magnipore) ![Conda](https://img.shields.io/conda/dn/jannessp/magnipore)
86
[![Conda package](https://anaconda.org/jannessp/magnipore/badges/latest_release_date.svg)](https://anaconda.org/jannessp/magnipore) [![Conda package](https://anaconda.org/jannessp/magnipore/badges/platforms.svg)](https://anaconda.org/jannessp/magnipore)
@@ -22,15 +20,8 @@ ___
2220
6. [Output File Description](#output-file-description)
2321
7. [Error Codes Explanation](#error-codes-explanation)
2422
___
25-
## Installation
26-
27-
### via pip
28-
29-
```bash
30-
pip install magnipore
31-
```
23+
## Installation via Conda
3224

33-
### via Conda
3425
To install Magnipore we recommend to use Conda:
3526
Magnipore is available for **linux-64 and osx-64**.
3627

README.rst

Lines changed: 2 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,5 @@
1-
Installation
2-
============
3-
4-
via pip
5-
-------
6-
7-
.. code:: bash
8-
9-
pip install magnipore
10-
11-
via Conda
12-
---------
1+
Installation via Conda
2+
======================
133

144
To install Magnipore we recommend to use Conda: Magnipore is available
155
for **linux-64 and osx-64**.

conda.recipe/meta.yaml

Lines changed: 6 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -20,32 +20,17 @@ requirements:
2020
- pip
2121
run:
2222
- python
23-
- h5py>=3.7
24-
- biopython>=1.80
25-
- mafft>=7.508
26-
- matplotlib>=3.6
27-
- numpy>=1.21
28-
- scipy>=1.9
29-
- minimap2>=2.24
30-
- samtools>=1.0
31-
- pandas>=1.5
32-
- seaborn>=0.12
33-
- psutil>=5.9
34-
- hdf5>=1.12
35-
- hdf5plugin>=3.3
36-
- ont_vbz_hdf_plugin>=1.0
37-
- pytest>=7.1
38-
- gzip>=1.12
39-
- f5c>=1.2
40-
- read5>=1.2.0
23+
# dependencies are defined in setup.py
24+
{% for dep in data['install_requires'] %}
25+
- {{ dep.lower() }}
26+
{% endfor %}
4127

4228
test:
4329
source_files:
4430
- tests
4531
requires:
4632
- pytest
4733
commands:
48-
- pip install pod5 --no-warn-conflicts --no-python-version-warning
4934
- magnipore --help
5035
- nanosherlock --help
5136
- pytest -vv
@@ -59,9 +44,7 @@ about:
5944
description: |
6045
# Magnipore
6146
62-
[![License: GPL v3](https://img.shields.io/badge/License-GPL%20v3-teal.svg)](https://www.gnu.org/licenses/gpl-3.0)![PyPI - Python Version](https://img.shields.io/pypi/pyversions/magnipore)![conda](https://img.shields.io/badge/Uses-conda-green.svg)
63-
64-
[![PyPI](https://img.shields.io/pypi/v/magnipore) ![PyPI - Downloads](https://img.shields.io/pypi/dm/magnipore) ![PyPI - Status](https://img.shields.io/pypi/status/magnipore)](https://pypi.org/project/magnipore/)
47+
[![License: GPL v3](https://img.shields.io/badge/License-GPL%20v3-teal.svg)](https://www.gnu.org/licenses/gpl-3.0)![conda](https://img.shields.io/badge/Uses-conda-green.svg)
6548
6649
[![Conda package](https://anaconda.org/jannessp/magnipore/badges/version.svg)](https://anaconda.org/jannessp/magnipore) ![Conda](https://img.shields.io/conda/dn/jannessp/magnipore)
6750
[![Conda package](https://anaconda.org/jannessp/magnipore/badges/latest_release_date.svg)](https://anaconda.org/jannessp/magnipore) [![Conda package](https://anaconda.org/jannessp/magnipore/badges/platforms.svg)](https://anaconda.org/jannessp/magnipore)
@@ -80,15 +63,8 @@ about:
8063
6. [Output File Description](#output-file-description)
8164
7. [Error Codes Explanation](#error-codes-explanation)
8265
___
83-
## Installation
84-
85-
### via pip
86-
87-
```bash
88-
pip install magnipore
89-
```
66+
## Installation via Conda
9067
91-
### via Conda
9268
To install Magnipore we recommend to use Conda:
9369
Magnipore is available for **linux-64 and osx-64**.
9470

pypi.sh

Lines changed: 0 additions & 3 deletions
This file was deleted.

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from setuptools import setup
22
import versioneer
33

4-
# pypi dependencies
4+
# conda dependencies
55
requirements = [
66
'h5py>=3.7',
77
'biopython>=1.80',
@@ -16,11 +16,11 @@
1616
'psutil>=5.9',
1717
'hdf5>=1.12',
1818
'hdf5plugin>=3.3',
19-
'vbz-h5py-plugin>=1.0',
19+
'ont_vbz_hdf_plugin>=1.0',
2020
'pytest>=7.1',
2121
'gzip>=1.12',
2222
'f5c>=1.2',
23-
'read5>=1.2.0'
23+
'read5>=1.2'
2424
]
2525

2626
setup(

0 commit comments

Comments
 (0)