forked from lukeping/GenomicConsensus
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·35 lines (32 loc) · 1 KB
/
Copy pathsetup.py
File metadata and controls
executable file
·35 lines (32 loc) · 1 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
from __future__ import absolute_import, division, print_function
from setuptools import setup, find_packages
from os.path import join, dirname
# GenomicConsensus implicitly depends on
# - ConsensusCore (Quiver/RSII)
# - ConsensusCore2 (Arrow/Sequel)
# adding these in 'install_requires' would
# make integration unnecessarily hard
setup(
name='GenomicConsensus',
version='2.3.2', # don't forget to update GenomicConsensus/__init__.py and doc/conf.py too
author='Pacific Biosciences',
author_email='devnet@pacificbiosciences.com',
license=open('LICENSE').read(),
scripts=[
'bin/variantCaller',
'bin/summarizeConsensus',
'bin/gffToVcf',
'bin/gffToBed',
'bin/plurality',
'bin/poa',
'bin/quiver',
'bin/arrow'],
packages=find_packages(),
include_package_data=True,
zip_safe=False,
setup_requires=['setuptools'],
install_requires=[
'pbcore >= 1.2.9',
'pbcommand >= 0.3.20',
'numpy >= 1.6.0']
)