-
Notifications
You must be signed in to change notification settings - Fork 30
/
setup.cfg
122 lines (108 loc) · 2.63 KB
/
setup.cfg
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
[metadata]
name = megalodon
version = attr: megalodon.__init__.__version__
description = Nanopore base calling augmentation.
license = ont_public_licence
long-description = file: README.rst
long-description-content-type = text/x-rst; charset=UTF-8; variant=GFM
url = https://github.com/nanoporetech/megalodon
author = Marcus Stoiber
maintainer = Marcus Stoiber
maintainer_email = [email protected]
platforms = any
classifiers =
Development Status :: 4 - Beta
Environment :: Console
Environment :: GPU
Intended Audience :: Developers
Intended Audience :: Science/Research
License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)
Natural Language :: English
Operating System :: Unix
Programming Language :: Python :: 3 :: Only
Topic :: Scientific/Engineering :: Artificial Intelligence
Topic :: Scientific/Engineering :: Bio-Informatics
[options]
zip_safe = False
packages =
megalodon
megalodon_extras
package_dir =
=.
include_package_data = True
python_requires =
>=3.6
# DON'T CHANGE THE FOLLOWING LINE! IT WILL BE UPDATED BY PYSCAFFOLD!
setup_requires = pyscaffold>=3.2a0,<3.3a0
# project dependencies (testing deps listed in next section)
install_requires =
h5py >= 2.2.1
numpy >= 1.9.0
scipy >= 1.1.0
Cython >= 0.25.2
mappy >= 2.16
pysam >= 0.15
ont_fast5_api >= 3.2
tqdm >= 2.17
ont-pyguppy-client-lib
scikit-learn
seaborn
ont-remora >= 1.0
[options.package_data]
* = model_data/*/*.npz
[options.extras_require]
testing =
pytest
black
sphinx
sphinx-rtd-theme
sphinx-argparse
[options.packages.find]
where =
megalodon/
exclude =
docs
tests
.eggs
[options.entry_points]
console_scripts =
megalodon = megalodon.__main__:_main
megalodon_extras = megalodon_extras.__main__:_main
[test]
extras = True
[tool:pytest]
addopts =
--cov megalodon --verbose --ignore *.egg*
norecursedirs =
dist
build
.tox
.eggs
testpaths = tests
[aliases]
dists = bdist_wheel
[bdist_wheel]
# Use this option if your package is pure-python
universal = 1
[build_sphinx]
source_dir = docs
build_dir = build/sphinx
[devpi:upload]
# Options for the devpi: PyPI server and packaging tool
# VCS export must be deactivated since we are using setuptools-scm
no-vcs = 1
formats = bdist_wheel
[pyscaffold]
# PyScaffold's parameters when the project was created.
# This will be used when updating. Do not change!
version = 3.2.3
package = megalodon
extensions =
markdown
gitlab
[flake8]
# ignore:
# E203 whitespace before ':'
# W503 line break before binary operator
ignore = E203,W503
max-line-length = 80