Skip to content

Commit 9ca76ff

Browse files
committed
update
1 parent b89772e commit 9ca76ff

File tree

4 files changed

+24
-25
lines changed

4 files changed

+24
-25
lines changed

MANIFEST.in

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
include src/encodings/*.lp
2-
include CHANGES.txt
3-
include README.rst
2+
include CHANGELOG.md
3+
include README.md

README.md

Lines changed: 18 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,44 +1,42 @@
11
# Installation
22

3-
43
You can install meneco by running:
54

65
> pip install --user meneco
76

8-
On Linux the executable script can then be found in ``~/.local/bin``
7+
On Linux the executable script can then be found in `~/.local/bin`
98

10-
and on MacOS the script is under ``/Users/YOURUSERNAME/Library/Python/3.2/bin``.
9+
and on MacOS the script is under `/Users/YOURUSERNAME/Library/Python/3.2/bin`.
1110

1211

1312
# Usage Command line interface
1413

1514
Typical usage is:
1615

17-
> meneco.py -d draftnetwork.sbml -s seeds.sbml -t targets.sbml -r repairnetwork.sbml
16+
> meneco.py -d draftnetwork.sbml -s seeds.sbml -t targets.sbml -r repairnetwork.sbml
1817

1918
For more options you can ask for help as follows:
2019

21-
> meneco.py --h
22-
usage: meneco.py [-h] -d DRAFTNET -s SEEDS -t TARGETS [-r REPAIRNET]
23-
[--enumerate]
20+
> meneco.py --h
21+
usage: meneco.py [-h] -d DRAFTNET -s SEEDS -t TARGETS [-r REPAIRNET]
22+
[--enumerate]
2423

25-
optional arguments:
26-
-h, --help show this help message and exit
27-
-d DRAFTNET, --draftnet DRAFTNET
28-
metabolic network in SBML format
29-
-s SEEDS, --seeds SEEDS
30-
seeds in SBML format
31-
-t TARGETS, --targets TARGETS
32-
targets in SBML format
33-
-r REPAIRNET, --repairnet REPAIRNET
34-
perform network completion using REPAIRNET a metabolic
35-
network in SBML format
36-
--enumerate enumerate all minimal completions
24+
optional arguments:
25+
-h, --help show this help message and exit
26+
-d DRAFTNET, --draftnet DRAFTNET
27+
metabolic network in SBML format
28+
-s SEEDS, --seeds SEEDS
29+
seeds in SBML format
30+
-t TARGETS, --targets TARGETS
31+
targets in SBML format
32+
-r REPAIRNET, --repairnet REPAIRNET
33+
perform network completion using REPAIRNET a metabolic
34+
network in SBML format
35+
--enumerate enumerate all minimal completions
3736

3837

3938
# Usage Library
4039

41-
4240
For a guided example, see a demonstration IPython [Notebook](http://nbviewer.jupyter.org/github/bioasp/meneco/blob/master/meneco.ipynb).
4341

4442

meneco.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"cell_type": "markdown",
1212
"metadata": {},
1313
"source": [
14-
"This notebook is a preview demo of [meneco](https://pypi.python.org/pypi/meneco/) combined with the [IPython](http://ipython.org/) interactive environment. This demo assumes you have meneco 1.5.2 already installed. "
14+
"This notebook is a preview demo of [meneco](https://pypi.python.org/pypi/meneco/) combined with the [IPython](http://ipython.org/) interactive environment. This demo assumes you have meneco 1.5.3 already installed. "
1515
]
1616
},
1717
{

setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,16 @@
1616
# along with meneco. If not, see <http://www.gnu.org/licenses/>.
1717
# -*- coding: utf-8 -*-
1818
from setuptools import setup
19-
19+
2020
setup(
2121
name = 'meneco',
2222
version = '1.5.3',
2323
url = 'http://bioasp.github.io/meneco/',
2424
license = 'GPLv3+',
2525
description = 'Metabolic Network Completion. Compute minimal completions '
2626
'to your draft network with reactions from a repair network.',
27-
long_description = open('README.rst').read(),
27+
long_description = open('README.md').read(),
28+
long_description_content_type="text/markdown",
2829
author = 'Sven Thiele',
2930
author_email = '[email protected]',
3031
packages = ['__meneco__'],

0 commit comments

Comments
 (0)