forked from epic-open-source/evaluation-instruments
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cfg
More file actions
74 lines (65 loc) · 1.61 KB
/
setup.cfg
File metadata and controls
74 lines (65 loc) · 1.61 KB
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
[metadata]
name = evaluation-instruments
version = 0.0.1
description = evaluation-instruments: Evaluation instruments for healthcare AI use cases
author = Epic
author_email = OpenSourceContributions-Python@epic.com
license_files = LICENSE.txt
license = BSD 3-Clause
classifiers =
Programming Language :: Python :: 3
License :: OSI Approved :: BSD License
Operating System :: OS Independent
Intended Audience :: Healthcare Industry
project_urls =
Source = https://github.com/epic-open-source/evaluation-instruments
readme = file: README.md
[options]
python_requires = >=3.10
zip_safe = false
packages =
find:
include_package_data = True
install_requires =
jupyterlab>=4.2.5,<5
pandas>=2.2,<3
pydantic>=2.6.3,<3
[options.packages.find]
where = src
include =
evaluation_instruments
evaluation_instruments.*
[options.extras_require]
all =
dev =
pre-commit>=4.2.0
pytest>=5.1.1
coverage>=7.5.1
[tool:pytest]
testpaths = tests
filterwarnings =
ignore::UserWarning
ignore::PendingDeprecationWarning
[coverage:run]
branch = True
source =
evaluation_instruments
[coverage:html]
directory = coverage/html-report
[coverage:xml]
output = coverage/coverage.xml
[tool:isort]
line_length = 119
profile = black
[flake8]
max-line-length = 119
extend-ignore = F821
per-file-ignores =
# F401 imported but unused
# F403 wildcard import, unable to detect names
__init__.py: F401, F403
# F811 redefinition of unused, fixtures
tests/*: F811
# E402 prompt files import after prompts
# E501 prompts can be whitespace sensitive
instruments/**/*prompt.py: E402, E501