forked from walllab/reciprocal_smallest_distance
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
51 lines (44 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
# try using distribute or setuptools or distutils.
try:
import distribute_setup
distribute_setup.use_setuptools()
except:
pass
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
import os
import sys
import rsd
if sys.version_info <= (2, 6):
sys.stderr.write("ERROR: rsd requires Python Version 2.7 or above...exiting.\n")
sys.exit(1)
setup(
name = "reciprocal_smallest_distance",
version = rsd.__version__,
author = "Todd F. DeLuca, Dennis P. Wall",
author_email = "[email protected]",
description = "Reciprocal Smallest Distance (RSD) finds pairwise orthologous genes using global sequence alignment and maximum likelihood evolutionary distance estimates.",
license = "MIT",
keywords = "genome ortholog algorithm",
platforms = "Posix; MacOS X",
url = "https://github.com/todddeluca/reciprocal_smallest_distance", # project home page, if any
download_url = "https://github.com/todddeluca/reciprocal_smallest_distance/downloads",
scripts = ['bin/rsd_search', 'bin/rsd_format', 'bin/rsd_blast'],
packages = ['rsd'],
package_data = {
'rsd': ['*.ctl', '*.dat'],
},
classifiers = [
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Operating System :: MacOS :: MacOS X',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Topic :: Scientific/Engineering :: Bio-Informatics',
],
)