-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
126 lines (110 loc) · 2.54 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
[metadata]
name = hte_streamlit
description = High-throughput experimentation data analysis and visualization tool
author = Jacob Schneidewind
author_email = [email protected]
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/jschneidewind/hte-streamlit
project_urls =
Bug Tracker = https://github.com/jschneidewind/hte-streamlit/issues
classifiers =
Programming Language :: Python :: 3
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Development Status :: 3 - Alpha
Intended Audience :: Science/Research
Topic :: Scientific/Engineering :: Information Analysis
[options]
package_dir =
= src
packages = find:
python_requires = >=3.8
install_requires =
streamlit
pandas
numpy
plotly
matplotlib
scipy
h5py
tables
openpyxl
[options.packages.find]
where = src
[options.package_data]
hte_streamlit = py.typed
[flake8]
max-line-length = 100
extend-ignore = E203
exclude =
.git,
__pycache__,
build,
dist,
*.egg-info
[isort]
profile = black
multi_line_output = 3
include_trailing_comma = True
force_grid_wrap = 0
use_parentheses = True
ensure_newline_before_comments = True
line_length = 100
[tool:pytest]
testpaths = tests
python_files = test_*.py
python_classes = Test
python_functions = test_*
addopts =
--verbose
--doctest-modules
--cov=hte_streamlit
--cov-report=term-missing
--cov-report=xml
--cov-report=html
[coverage:run]
source = hte_streamlit
omit =
tests/*
setup.py
[coverage:report]
exclude_lines =
pragma: no cover
def __repr__
if self.debug:
raise NotImplementedError
if __name__ == .__main__.:
pass
raise ImportError
[mypy]
python_version = 3.8
warn_return_any = True
warn_unused_configs = True
disallow_untyped_defs = True
disallow_incomplete_defs = True
check_untyped_defs = True
disallow_untyped_decorators = True
no_implicit_optional = True
warn_redundant_casts = True
warn_unused_ignores = True
warn_no_return = True
warn_unreachable = True
[mypy-pandas.*]
ignore_missing_imports = True
[mypy-numpy.*]
ignore_missing_imports = True
[mypy-plotly.*]
ignore_missing_imports = True
[mypy-matplotlib.*]
ignore_missing_imports = True
[mypy-scipy.*]
ignore_missing_imports = True
[mypy-h5py.*]
ignore_missing_imports = True
[mypy-streamlit.*]
ignore_missing_imports = True