-
Notifications
You must be signed in to change notification settings - Fork 26
/
setup.py
executable file
·39 lines (36 loc) · 991 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
36
37
38
39
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
test_deps = [
'coverage',
'pbtestdata',
'pylint',
'pytest',
'pytest-cov',
'pytest-xdist == 1.34.0',
'sphinx==1.8.5',
'jinja2==2.11.1',
'markupsafe==2.0.1',
'xmlschema',
]
setup(
name='pbcore',
version='2.5.1',
author='Pacific Biosciences',
author_email='[email protected]',
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=[
'biopython >= 1.76',
'numpy >= 1.21.0, <= 1.22.4',
'pysam >= 0.16.0.1',
],
tests_require=test_deps,
extras_require={'test': test_deps},
python_requires='>=3.9',
)