-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.cfg
68 lines (60 loc) · 1.69 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
[metadata]
name = deepdrivemd
version = attr: deepdrivemd.__version__
description = Deep-Learning Driven Adaptive Molecular Simulations
long_description = file: README.md, LICENSE.md
long_description_content_type=text/markdown
url = https://deepdrivemd.github.io/
author = Alexander Brace, Hyungro Lee, Heng Ma, Anda Trifan, Matteo Turilli, Igor Yakushin, Li Tan, Andre Merzky, Tod Munson, Ian Foster, Shantenu Jha, Arvind Ramanathan
author_email = [email protected], [email protected]
license = MIT License
keywords = workflow, machine-learning, complex-biological-systems, multi-scale-molecular-simulations
classifiers =
Programming Language :: Python :: 3
License :: OSI Approved :: MIT License
Operating System :: POSIX :: Linux
Topic :: Scientific/Engineering :: Artificial Intelligence
Topic :: Scientific/Engineering :: Physics
[options]
packages= find:
install_requires =
PyYAML>=5.4.1,<6.0.0
pydantic[dotenv]>=1.8.2,<2.0.0
radical.entk
MDAnalysis
numpy>=1.20
tqdm
h5py==2.10.0
pathos
python_requires = >=3.6
[options.packages.find]
exclude =
data
tests
docs
env
[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
[isort]
line_length = 118
profile = black
known_first_party=deepdrivemd
multi_line_output=3
combine_as_imports=True
[mypy]
show_error_codes = True
check_untyped_defs = True
follow_imports = normal
strict_optional = True
plugins = pydantic.mypy, numpy.typing.mypy_plugin
strict = True
disallow_untyped_defs = True