-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (24 loc) · 1.47 KB
/
setup.py
File metadata and controls
27 lines (24 loc) · 1.47 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
from setuptools import setup, Extension
import tripVote
def main():
setup(name=tripVote.PROGRAM_NAME,
version=tripVote.PROGRAM_VERSION,
description="The tripvote Python software",
long_description="This is an implementation of tripVote: complete a set of gene trees to maximize the quartet score. The core algorithm is the Maximum Triplet Rooting (MTR) problem: Root a tree T according to a reference tree R such that the triplet score of T and R is maximized. The algorithm and the code heavily depend on the tqDist software http://birc.au.dk/software/tqDist/. We would like to thank the authors for the code and algorithmic ideas.",
url="https://github.com/uym2/tripVote",
author="uym2",
author_email="ceciliamaitouyen@gmail.com",
python_requires='>=3',
scripts=["tripVote_complete_trees.py"],
install_requires=["tqdist","treeswift","triproot","setuptools","wheel"],
packages=["tripVote"],
classifiers=["Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License (GPL)",
"Natural Language :: English",
"Programming Language :: Python",
"Topic :: Scientific/Engineering :: Bio-Informatics",
])
if __name__ == "__main__":
main()