-
Notifications
You must be signed in to change notification settings - Fork 21
/
setup.cfg
120 lines (103 loc) · 2.7 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
[metadata]
name = balsam
version = attr: balsam.__version__
description = HPC Workflows & Edge Service
long_description = file: README.md
long_description_content_type=text/markdown
url = https://balsam.readthedocs.io
project_urls =
Source = https://github.com/argonne-lcf/balsam
Documentation = https://argonne-lcf.github.io/balsam
author = Misha Salim, Thomas Uram, J. Taylor Childers
author_email = turam@anl.gov
license = BSD 3-Clause License
keywords = workflows, hpc, scientific, workflow
classifiers =
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Development Status :: 3 - Alpha
License :: OSI Approved :: BSD License
Intended Audience :: Science/Research
Topic :: Scientific/Engineering
[options]
packages = find:
python_requires = >=3.7
# Do not pin versions here
# Flexibility here enables users to "pip install"
# Balsam into a variety of Python envs
install_requires =
PyYAML>=5.4.1,<7.0.0
multiprocessing-logging>=0.3.1,<1.0.0
Click>=8.0.1,<9.0.0
inquirer>=2.7.0,<3.0.0
pydantic[dotenv]>=1.8.2,<2.0.0
python-dateutil>=2.8.1,<3.0.0
jinja2>=3.0.1,<4.0.0
requests>=2.25.1,<3.0.0
psutil>=5.8.0,<6.0.0
globus-sdk>=3.0.1,<4.0.0
configobj>=5.0.6,<6.0.0
pyzmq>=24.0.1
dill>=0.3.4,<1.0.0
tblib>=1.7.0,<2.0.0
[options.packages.find]
exclude =
tests
docs
[options.package_data]
balsam =
py.typed
config/defaults
config/defaults/*
config/defaults/*/*
config/defaults/*/*/*
[options.entry_points]
console_scripts =
balsam=balsam.cmdline:main
[flake8]
exclude = .git,*migrations*,*alembic*
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
markers =
alcf_theta: Runs on ACLF Theta-KNL
alcf_thetagpu: Runs on ALCF ThetaGPU
alcf_cooley: Runs on ALCF Cooley
alcf_polaris: Runs on ALCF Polaris
[coverage:run]
branch = True
source = balsam
concurrency = multiprocessing, thread
parallel = True
[coverage:report]
precision = 2
exclude_lines =
raise NotImplementedError
raise NotImplemented
[isort]
line_length = 118
profile = black
known_first_party=balsam
multi_line_output=3
combine_as_imports=True
[mypy]
show_error_codes = True
check_untyped_defs = True
follow_imports = normal
strict_optional = True
plugins = sqlmypy, pydantic.mypy
strict = True
disallow_untyped_defs = True
[mypy-sqlalchemy.orm.exc]
ignore_missing_imports = True
[mypy-balsam.server.models.alembic]
ignore_missing_imports = True
[mypy-balsam.shared_apps.*]
ignore_errors = True