-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
75 lines (65 loc) · 1.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
[metadata]
name = hela-data
version = attr:hela_data.__version__
description = Functionality for MaxQuant data processiong of text outputs
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/RasmussenLab/hela_qc_mnt_data
author = Henry Webel
author_email = "Henry Webel" <[email protected]>
license = gpl-3.0
license_files = LICENSE
classifiers =
License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Intended Audience :: Healthcare Industry
Intended Audience :: Science/Research
Programming Language :: Python :: 3
Topic :: Scientific/Engineering :: Bio-Informatics
[options]
python_requires = >=3.9
package_dir =
=src
packages = find:
include_package_data = True
install_requires =
numpy
matplotlib
pandas
plotly
seaborn
fastcore
omegaconf
ipywidgets
ipykernel
tqdm
pyyaml
openpyxl
xmltodict
requests
umap-learn
scikit-learn
[options.extras_require]
docs =
sphinx
sphinx-book-theme
myst-parser
[options.packages.find]
where = src
exclude =
test*
######################
# Tool configuration #
######################
[flake8]
max-line-length = 120
aggressive = 2
[tool:pytest]
testpaths = test
addopts = --cov --strict-markers
xfail_strict = True
[coverage:run]
source = hela_data
branch = True
[coverage:report]
show_missing = True
skip_covered = True