Skip to content

Commit

Permalink
Fix hyphen in setup.cfg keys
Browse files Browse the repository at this point in the history
  • Loading branch information
abravalheri committed Aug 2, 2021
1 parent 75a050a commit b7c1ebb
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@
name = pyscaffoldext-cookiecutter
description = Integration of Cookiecutter project templates into PyScaffold (see: https://github.com/cookiecutter/cookiecutter)
author = Anderson Bravalheri
author-email = andersonbravalheri@gmail.com
author_email = andersonbravalheri@gmail.com
license = MIT
long-description = file: README.rst
long-description-content-type = text/x-rst; charset=UTF-8
long_description = file: README.rst
long_description_content_type = text/x-rst; charset=UTF-8
url = https://github.com/pyscaffold/pyscaffoldext-cookiecutter/
# Add here related links, for example:
project-urls =
project_urls =
Documentation = https://pyscaffoldext-custom-extension.readthedocs.io/
Source = https://github.com/pyscaffold/pyscaffoldext-cookiecutter/
Tracker = https://github.com/pyscaffold/pyscaffoldext-cookiecutter/issues
Expand Down Expand Up @@ -99,13 +99,13 @@ universal = 1
[devpi:upload]
# Options for the devpi: PyPI server and packaging tool
# VCS export must be deactivated since we are using setuptools-scm
no-vcs = 1
no_vcs = 1
formats = bdist_wheel

[flake8]
# Some sane defaults for the code style checker flake8
max-line-length = 88
extend-ignore = E203, W503
max_line_length = 88
extend_ignore = E203, W503
# ^ Black-compatible
# E203 and W503 have edge cases handled by black
exclude =
Expand Down

0 comments on commit b7c1ebb

Please sign in to comment.