mirror of
https://github.com/openmm/openmmforcefields.git
synced 2026-06-06 18:39:48 +09:00
31 lines
610 B
INI
31 lines
610 B
INI
# Helper file to handle all configs
|
|
|
|
[coverage:run]
|
|
# .coveragerc to control coverage.py and pytest-cov
|
|
omit =
|
|
# Omit the tests
|
|
*/tests/*
|
|
# Omit generated versioneer
|
|
openmmforcefields/_version.py
|
|
|
|
[yapf]
|
|
# YAPF, in .style.yapf files this shows up as "[style]" header
|
|
COLUMN_LIMIT = 119
|
|
INDENT_WIDTH = 4
|
|
USE_TABS = False
|
|
|
|
[flake8]
|
|
# Flake8, PyFlakes, etc
|
|
max-line-length = 119
|
|
|
|
[versioneer]
|
|
# Automatic version numbering scheme
|
|
VCS = git
|
|
style = pep440
|
|
versionfile_source = openmmforcefields/_version.py
|
|
versionfile_build = openmmforcefields/_version.py
|
|
tag_prefix = ''
|
|
|
|
[aliases]
|
|
test = pytest
|