Skip to content

Commit

Permalink
Added installer
Browse files Browse the repository at this point in the history
  • Loading branch information
Francesco Beghini committed Jun 11, 2020
1 parent 8d5f52e commit 42c8d30
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 1 deletion.
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
include README.md
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,12 @@
$ conda install export2graphlan
```

2. Repository
2. [Pypi](https://pypi.org/project/export2graphlan/)
```
$ pip install export2graphlan
```

3. Repository

```
$ git clone [email protected]:SegataLab/export2graphlan.git
Expand Down
20 changes: 20 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
import setuptools
from setuptools.command.install import install
from io import open
import os

install_requires = ["pandas==0.13.1"]
setuptools.setup(
name='export2graphlan',
version='0.22',
author='Francesco Asnicar',
author_email='[email protected]',
url='http://github.com/segatalab/export2graphlan',
packages = setuptools.find_packages(),
scripts=['export2graphlan.py'],
package_dir = {'export2graphlan' : '' },
long_description_content_type='text/markdown',
long_description=open('README.md').read(),
description='export2graphlan is a conversion software tool for producing both annotation and tree file for GraPhlAn',
install_requires=install_requires
)

0 comments on commit 42c8d30

Please sign in to comment.