-
Notifications
You must be signed in to change notification settings - Fork 17
/
setup.py
31 lines (28 loc) · 984 Bytes
/
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
#!/usr/bin/env python
from setuptools import setup, find_packages
version = '8.0.0'
setup(name='Cogent',
version=version,
description='COding GENome reconstruction Tool using transcript sequences',
author='Elizabeth Tseng',
author_email='[email protected]',
install_requires=[
'matplotlib',
'numpy',
'scipy',
'networkx>=2.5',
'scikit-image',
'pulp',
'biopython',
'bx-python>=0.7.3' ],
packages=['Cogent', 'Cogent.test'],
package_dir = {'Cogent':'Cogent'},
zip_safe=False,
test_suite = "Cogent.test.test_cogent",
scripts=['Cogent/run_mash.py',
'Cogent/process_kmer_to_graph.py',
'Cogent/gff3_to_collapsed.py',
'Cogent/reconstruct_contig.py',
'Cogent/generate_batch_cmd_for_Cogent_reconstruction.py',
'Cogent/generate_batch_cmd_for_Cogent_family_finding.py'
])