59 lines
1.4 KiB
INI
59 lines
1.4 KiB
INI
[bdist_wheel]
|
|
|
|
[flake8]
|
|
max-line-length = 140
|
|
exclude = tests/*,*/migrations/*,*/south_migrations/*
|
|
|
|
[black]
|
|
line-length = 120
|
|
|
|
[isort]
|
|
profile = black
|
|
line_length=120
|
|
known_first_party=cleveragents
|
|
default_section=THIRDPARTY
|
|
forced_separate=test_cleveragents
|
|
not_skip = __init__.py
|
|
skip = migrations, south_migrations
|
|
|
|
[matrix]
|
|
# This is the configuration for the `./bootstrap.py` script.
|
|
# It generates `.travis.yml`, `tox.ini` and `appveyor.yml`.
|
|
#
|
|
# Syntax: [alias:] value [!variable[glob]] [&variable[glob]]
|
|
#
|
|
# alias:
|
|
# - is used to generate the tox environment
|
|
# - it's optional
|
|
# - if not present the alias will be computed from the `value`
|
|
# value:
|
|
# - a value of "-" means empty
|
|
# !variable[glob]:
|
|
# - exclude the combination of the current `value` with
|
|
# any value matching the `glob` in `variable`
|
|
# - can use as many you want
|
|
# &variable[glob]:
|
|
# - only include the combination of the current `value`
|
|
# when there's a value matching `glob` in `variable`
|
|
# - can use as many you want
|
|
|
|
python_versions =
|
|
3.9
|
|
|
|
dependencies =
|
|
# 1.4: Django==1.4.16 !python_versions[3.*]
|
|
# 1.5: Django==1.5.11
|
|
# 1.6: Django==1.6.8
|
|
# 1.7: Django==1.7.1 !python_versions[2.6]
|
|
# Deps commented above are provided as examples. That's what you would use in a Django project.
|
|
|
|
coverage_flags =
|
|
cover: true
|
|
nocov: false
|
|
|
|
environment_variables =
|
|
-
|
|
|
|
[pylint.messages control]
|
|
disable = duplicate-code
|