File tree Expand file tree Collapse file tree 3 files changed +27
-1
lines changed
Expand file tree Collapse file tree 3 files changed +27
-1
lines changed Original file line number Diff line number Diff line change 1+ include README.md
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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+ )
You can’t perform that action at this time.
0 commit comments