-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Francesco Beghini
committed
Jun 11, 2020
1 parent
8d5f52e
commit 42c8d30
Showing
3 changed files
with
27 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
include README.md |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
) |