-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
48 lines (40 loc) · 1009 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
47
48
[metadata]
name = funcx_openfold
version = attr: funcx_openfold.__version__
description = FuncX OpenFold interface.
long_description = file:README.md
long_description_content_type=text/markdown
url = https://github.com/ramanathanlab/funcx-openfold
author = Alexander Brace, Maxim Zvyagin, Arvind Ramanathan
author_email = [email protected]
[options]
packages = find:
python_requires = >=3.7
[options.entry_points]
console_scripts =
funcx-openfold = funcx_openfold.cli:main
[options.packages.find]
exclude =
test
docs
[flake8]
exclude = .git
max-line-length = 118
extend-ignore = E203,W503,E501,E302,E231
max-complexity = 14
[tool:pytest]
# https://docs.pytest.org/en/stable/customize.html
addopts = -x
junit_family=xunit1
filterwarnings =
ignore::DeprecationWarning
[mypy]
show_error_codes = True
check_untyped_defs = True
follow_imports = normal
strict_optional = True
plugins = pydantic.mypy
strict = True
disallow_untyped_defs = True
[mypy-funcx.*]
ignore_missing_imports = True