forked from PacificBiosciences/pbcore
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·43 lines (37 loc) · 1.04 KB
/
setup.py
File metadata and controls
executable file
·43 lines (37 loc) · 1.04 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from __future__ import print_function
from setuptools import setup, find_packages
import sys
import os
if sys.version_info[0:2] != (2, 7):
print('pbcore requires Python 2.7')
sys.exit(-1)
test_deps = [
'coverage',
'pytest',
'nose',
'pyxb == 1.2.4',
'sphinx',
'h5py >= 2.0.1',
'pylint == 1.6.4',
]
setup(
name='pbcore',
version='1.7.1', # don't forget to update pbcore/__init__.py and doc/conf.py too
author='Pacific Biosciences',
author_email='devnet@pacificbiosciences.com',
description='A Python library for reading and writing PacBio® data files',
license='BSD-3-Clause-Clear',
packages=find_packages(),
include_package_data=True,
exclude_package_data={'pbcore.data': ['Makefile']},
zip_safe=False,
entry_points={'console_scripts': ['.open = pbcore.io.opener:entryPoint']},
install_requires=[
'numpy >= 1.7.1',
'pysam >= 0.15.1',
],
test_requires=test_deps,
extras_require={'test': test_deps},
)