-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathsetup.py
49 lines (46 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
test_deps = [
'autopep8',
'coverage',
'pep8',
'pylint',
'pytest',
'pytest-cov',
'pytest-xdist == 1.34.0',
]
setup(
name='pbcommand',
version='2.4.4',
author='Pacific Biosciences',
author_email='[email protected]',
description='Library and Tools for interfacing with PacBio® data CLI tools',
license='BSD-3-Clause-Clear',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Topic :: Software Development :: Bug Tracking',
],
install_requires=[
'avro-python3',
'iso8601',
'pytz',
'requests',
],
test_requires=test_deps,
extras_require={
'test': test_deps,
'pbcore': [
'pbcore',
'ipython',
'autopep8',
],
'interactive': [
'prompt_toolkit',
]},
python_requires='>=3.9',
)