forked from lukeping/GenomicConsensus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·34 lines (31 loc) · 1.08 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
from setuptools import setup, find_packages
from os.path import join, dirname
# Load __VERSION__ from the GenomicConsensus package that is under
# this directory---do NOT import GenomicConsensus, as importing
# GenomicConsensus may fail if it has not actually been installed yet.
globals = {}
execfile("GenomicConsensus/__init__.py", globals)
__VERSION__ = globals["__VERSION__"]
setup(
name = 'GenomicConsensus',
version=__VERSION__,
author='Pacific Biosciences',
author_email='[email protected]',
license=open('LICENSES').read(),
scripts = ['bin/variantCaller.py',
'bin/summarizeConsensus.py',
'bin/gffToVcf.py',
'bin/gffToBed.py',
'bin/plurality',
'bin/quiver'],
packages = find_packages(),
package_data={'GenomicConsensus.quiver': ['resources/*/GenomicConsensus/*.ini']},
include_package_data=True,
zip_safe = False,
install_requires=[
'pbcore >= 0.8.0',
'numpy >= 1.6.0',
'h5py >= 2.0.1',
'ConsensusCore >= 0.7.6'
]
)