Skip to content

Commit 42c8d30

Browse files
author
Francesco Beghini
committed
Added installer
1 parent 8d5f52e commit 42c8d30

File tree

3 files changed

+27
-1
lines changed

3 files changed

+27
-1
lines changed

MANIFEST.in

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
include README.md

README.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,12 @@
1818
$ conda install export2graphlan
1919
```
2020

21-
2. Repository
21+
2. [Pypi](https://pypi.org/project/export2graphlan/)
22+
```
23+
$ pip install export2graphlan
24+
```
25+
26+
3. Repository
2227

2328
```
2429
$ git clone git@github.com:SegataLab/export2graphlan.git

setup.py

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
import setuptools
2+
from setuptools.command.install import install
3+
from io import open
4+
import os
5+
6+
install_requires = ["pandas==0.13.1"]
7+
setuptools.setup(
8+
name='export2graphlan',
9+
version='0.22',
10+
author='Francesco Asnicar',
11+
author_email='f.asnicar@unitn.it',
12+
url='http://github.com/segatalab/export2graphlan',
13+
packages = setuptools.find_packages(),
14+
scripts=['export2graphlan.py'],
15+
package_dir = {'export2graphlan' : '' },
16+
long_description_content_type='text/markdown',
17+
long_description=open('README.md').read(),
18+
description='export2graphlan is a conversion software tool for producing both annotation and tree file for GraPhlAn',
19+
install_requires=install_requires
20+
)

0 commit comments

Comments
 (0)