-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
executable file
·58 lines (49 loc) · 1.66 KB
/
setup.py
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
#!/usr/bin/env python
#
# setup for profileNJ library packages
#
# use the following to install:
# python setup.py build
# python setup.py install
#
import setuptools
import os
import sys
if os.path.exists('README'):
README = open('README').read()
else:
README = "" # a placeholder, readme is generated on release
sys.path.insert(0, os.path.realpath(
os.path.join(os.path.dirname(__file__), "python")))
from profileNJ import __project__, __version__
setuptools.setup(
name=__project__,
version=__version__,
description="profileNJ correct polytomies in tree, using minimum reconciliation (with specietree) cost, and Neighbor-Joining algorithm for clustering",
url='https://github.com/UdeM-LBIT/profileNJ',
download_url='https://github.com/UdeM-LBIT/profileNJ/tarball/v20161018',
author='Emmanuel Noutahi',
author_email='[email protected]',
scripts=['bin/profileNJ', 'bin/reconcile', 'bin/polytomySolver'],
packages=setuptools.find_packages(exclude=['tests']),
entry_points={'console_scripts': []},
long_description=(README + '\n'),
license='WTFPL',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Natural Language :: English',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Operating System :: POSIX',
'Programming Language :: Python',
],
test_suite="profileNJ.tests.test_suite",
install_requires=[
'ete3',
'numpy >= 1.8.1',
'lxml'
]
)