-
Notifications
You must be signed in to change notification settings - Fork 21
/
setup.cfg
executable file
·128 lines (116 loc) · 2.4 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
123
124
125
126
127
128
[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 = remora, remora.trained_models
package_dir =
=src
include_package_data = True
# project dependencies (tests deps listed in next section)
install_requires =
tqdm
toml
torch
numpy < 2.0
scikit-learn
thop
pod5 >= 0.2.8
pysam >= 0.20.0
parasail
requests
polars
# compatability issue with patchworklib in notebooks
# see https://github.com/ponnhide/patchworklib/issues/56
plotnine == 0.12.4
# remove with python 3.8 support
importlib_resources
[options.extras_require]
tests =
pytest
pytest-cov
black==22.8.0
flake8
sphinx
build
jupyter
patchworklib == 0.6.3
# bug in patchworklib cannot process 3.9.1.post1 version
# this is the last version which supported python 3.8
matplotlib == 3.7.5
scipy
[options.packages.find]
where =
src/
src/remora
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
etl
duplex
smoke
notebook
[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
[flake8]
# ignore:
# E203 whitespace before ':'
# W503 line break before binary operator
ignore = E203,W503
max-line-length = 80
exclude =
.eggs
.git
.venv
venv
_build
build
dist
docs
models
# TODO flake up the scripts dir
scripts