-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
35 lines (33 loc) · 970 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
32
33
34
35
#!/usr/bin/env python
from setuptools import setup, find_packages
from flea import __version__
setup(name='flea',
version=__version__,
description='Helper scripts for FLEA pipeline.',
author='Kemal Eren',
author_email='kemal@kemaleren.com',
packages=find_packages(exclude="test"),
test_suite='nose.collector',
setup_requires=[
'nose',
'coverage',
],
scripts=[
'flea/backtranslate.py',
'flea/cluster_fastq.py',
'flea/coordinates_json.py',
'flea/frame_correction.py',
'flea/diagnose.py',
'flea/DNAcons.py',
'flea/filter_fastx.py',
'flea/insert_gaps.py',
'flea/js_divergence.py',
'flea/manifold_embed.py',
'flea/pairs_to_fasta.py',
'flea/sequences_json.py',
'flea/translate.py',
'flea/trim_tails.py',
'flea/write_copynumbers.py',
'scripts/publish.py',
],
)