forked from nanoporetech/remora
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
executable file
·110 lines (96 loc) · 2.06 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
[metadata]
name = ont-remora
version = attr: src.remora.__init__.__version__
description = Nanopore methylation/modified base calling detached from basecalling
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/remora
# Change if running only on Windows, Mac or Linux (comma-separated)
platforms = any
classifiers =
Development Status :: 4 - Beta
Programming Language :: Python
[options]
zip_safe = False
packages = find:
package_dir =
=src/
include_package_data = True
# DON'T CHANGE THE FOLLOWING LINE! IT WILL BE UPDATED BY PYSCAFFOLD!
setup_requires = pyscaffold>=3.2a0,<3.3a0
# project dependencies (tests deps listed in next section)
install_requires =
tqdm
torch
numpy
scikit-learn
onnx
onnxruntime>=1.7
tabulate
thop
pandas
[options.package_data]
* = **.onnx
[options.extras_require]
tests =
pytest
pytest-cov
black
sphinx
[options.packages.find]
where =
src/
exclude =
docs
tests
.eggs
[options.entry_points]
console_scripts =
remora = remora.main:run
[test]
extras = True
[tool:pytest]
addopts =
--cov src/remora
--verbose
--ignore *.egg*
--durations=10
--doctest-ignore-import-errors
norecursedirs =
dist
build
.tox
.eggs
testpaths = tests
markers =
format
unit
main
[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 = ont-remora
extensions =
markdown
gitlab
[flake8]
# ignore:
# E203 whitespace before ':'
# W503 line break before binary operator
ignore = E203,W503
max-line-length = 80