-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·97 lines (85 loc) · 2.62 KB
/
setup.py
File metadata and controls
executable file
·97 lines (85 loc) · 2.62 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
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
from setuptools import setup, Command
import os
class CleanCommand(Command):
"""
Custom clean command to tidy up the project root.
http://bit.ly/2bw7xXb
"""
user_options = []
def initialize_options(self):
pass
def finalize_options(self):
pass
@staticmethod
def run():
os.system('rm -vrf ./build ./dist ./*.pyc ./*.tgz ./*.egg-info')
PACKAGES = [
'rdmcl',
]
DEPENDENCIES = [
'pytest>=3.3',
'pytest-xdist',
'pytest-cov',
'pandas>=0.19',
'numpy',
'scipy',
'biopython',
'buddysuite>=1.3.0',
'pyvolve',
'dill',
]
KEYWORDS = [
'computational biology',
'bioinformatics',
'orthogroup',
'ortholog',
'biology',
'Markov clustering',
'MCL'
]
ENTRY_POINTS = {
'console_scripts': [
'rdmcl = rdmcl.rdmcl:main',
'launch_worker = rdmcl.launch_worker:main',
'reset_workers = rdmcl.reset_workers:main',
'monitor_dbs = rdmcl.monitor_dbs:main',
'group_by_cluster = rdmcl.group_by_cluster:main',
'compare_homolog_groups = rdmcl.compare_homolog_groups:main',
'homolog_tree_builder = rdmcl.homolog_tree_builder:main'
]
}
setup(name='rdmcl',
version='1.1.0',
description='RDMCL recursively clusters groups of homologous sequences into orthogroups.',
long_description=open(os.path.join(os.path.dirname(__file__), 'README.rst'), encoding="utf-8").read(),
author='Stephen Bond',
maintainer='Stephen Bond',
author_email='steve.bond@nih.gov',
url='https://github.com/biologyguy/RD-MCL',
packages=PACKAGES,
setup_requires=['numpy'],
install_requires=DEPENDENCIES,
entry_points=ENTRY_POINTS,
license='Public Domain',
keywords=KEYWORDS,
zip_safe=False,
cmdclass={'clean': CleanCommand},
classifiers=[
'Development Status :: 5 - Production/Stable',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Topic :: Software Development :: Libraries :: Python Modules',
'Intended Audience :: Science/Research',
'Operating System :: MacOS :: MacOS X',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3 :: Only',
'License :: Public Domain',
'Natural Language :: English',
'Environment :: Console',
],
)