-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
46 lines (39 loc) · 1011 Bytes
/
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
[metadata]
name = isacc-ml
description = Flask-based microservice for NLP machine learning utilities in the ISACC service
author = CIRG
author_email = cirg-adm@uw.edu
url = https://github.com/uwcirg/isacc-ml
[options]
packages = ml_services
python_requires = >=3.9
install_requires =
flask
gunicorn
requests-cache
numpy
pandas
scipy
torch
transformers
[options.extras_require]
dev =
pytest
pytest-mock
pytest-datadir
requests-mock
[flake8]
max-line-length=100
[tool:pytest]
addopts = --color yes --verbose
console_output_style = classic
filterwarnings =
# only print each warning once per module
module
# Ignore testing-specific warning
ignore:^"localhost" is not a valid cookie domain, it must contain a.*:Warning
# Ignore warnings on specific dependencies (already reported upstream)
ignore::DeprecationWarning:dogpile
ignore::DeprecationWarning:flask_user
# error on bad assertions
error:.*assertion is always true.*