forked from openforcefield/openff-toolkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
32 lines (28 loc) · 890 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
# Helper file to handle all configs
[coverage:run]
# .coveragerc to control coverage.py and pytest-cov
omit =
# Omit the tests
*/tests/*
# Omit generated versioneer
openforcefield/_version.py
[flake8]
# Flake8, PyFlakes, etc
max-line-length = 119
[isort]
multi_line_output=3
include_trailing_comma=True
force_grid_wrap=0
use_parentheses=True
line_length=88
known_third_party=pkg_resources,packaging,IPython,pytest,numpy,networkx,rdkit,openeye,qcelemental,simtk,mdtraj,parmed,nglview,,pytest,qcportal,nglview,bson,toml,yaml,msgpack,xmltodict
skip=openforcefield/utils/__init__.py
[versioneer]
# Automatic version numbering scheme
VCS = git
style = pep440
versionfile_source = openforcefield/_version.py
versionfile_build = openforcefield/_version.py
tag_prefix = ''
# TODO: parentdir_prefix is left empty in the cookiecutter setup.cfg.
parentdir_prefix = openforcefield-