Skip to content

Commit

Permalink
(#2) chore: add version for setup
Browse files Browse the repository at this point in the history
  • Loading branch information
luismayta committed Mar 23, 2019
1 parent 3715410 commit 6f4e85f
Showing 1 changed file with 72 additions and 0 deletions.
72 changes: 72 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,72 @@
[bumpversion]
files = README.rst
commit = False
tag = False
current_version = 0.0.0

[bumpversion:file:setup.cfg]
search = version='{current_version}'
replace = version='{new_version}'

[metadata]
description-file = README.rst

[flake8]
max-complexity = 6
statistics = True
max-line-length = 100
exclude = .tox,.git,*/migrations/*,*/static/CACHE/*,docs,node_modules
doctests = True
inline-quotes = single
accept-encodings = utf-8
per-file-ignores =
tests/*.py: S101, Z432
hooks/*.py: T001
**/*.py: D100, D104, D106, D401, X100

[pycodestyle]
max-line-length = 100
exclude = .tox,.git,*/migrations/*,*/static/CACHE/*,docs,node_modules

[mypy]
python_version = 3.6
check_untyped_defs = True
ignore_errors = False
ignore_missing_imports = True
strict_optional = True
warn_unused_ignores = True
warn_redundant_casts = True
warn_unused_configs = True

[isort]
line_length = 100
default_section = THIRDPARTY
atomic=true
known_standard_library=types
combine_as_imports = true
include_trailing_comma = true
known_first_party=zsh-rvm
known_third_party=tests
not_skip = __init__.py
sections = FUTURE,STDLIB,THIRDPARTY,FIRSTPARTY,LOCALFOLDER

[wheel]
universal = 1

[aliases]
test=pytest

[tool:pytest]
norecursedirs = "build" "docs" "docs[\/]_build" ".egg"
addopts =
--cov zsh-rvm
--cov-report html
--ignore setup.py
--ignore test_envs.py
--ignore docs/
--ignore .eggs/
--ignore .pytest_cache/
--ignore .mypy_cache
--ignore .egg
-s -v
--doctest-modules

0 comments on commit 6f4e85f

Please sign in to comment.