-
-
Notifications
You must be signed in to change notification settings - Fork 82
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
- Loading branch information
Showing
10 changed files
with
57 additions
and
58 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
[run] | ||
omit = | ||
*/.tox/* | ||
tests/* | ||
prepare/* | ||
*/.tox/* | ||
tests/* | ||
prepare/* | ||
|
||
[report] | ||
show_missing = True |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
[flake8] | ||
max-line-length = 88 | ||
ignore = | ||
# W503 violates spec https://github.com/PyCQA/pycodestyle/issues/513 | ||
W503 | ||
# W504 has issues https://github.com/OCA/maintainer-quality-tools/issues/545 | ||
W504 | ||
|
||
# jaraco/skeleton#34 | ||
max-complexity = 10 | ||
|
||
extend-ignore = | ||
# Black creates whitespace before colon | ||
E203 | ||
enable-extensions = U4 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name: Automated Tests | ||
name: tests | ||
|
||
on: [push, pull_request] | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
repos: | ||
- repo: https://github.com/psf/black | ||
rev: stable | ||
rev: 20.8b1 | ||
hooks: | ||
- id: black | ||
|
||
- repo: https://github.com/asottile/blacken-docs | ||
rev: v1.8.0 | ||
rev: v1.9.1 | ||
hooks: | ||
- id: blacken-docs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,57 +1,57 @@ | ||
[metadata] | ||
license_file = LICENSE | ||
license_files = | ||
LICENSE | ||
name = importlib_metadata | ||
author = Jason R. Coombs | ||
author_email = jaraco@jaraco.com | ||
description = Read metadata from Python packages | ||
long_description = file:README.rst | ||
url = https://github.com/python/importlib_metadata | ||
classifiers = | ||
Development Status :: 5 - Production/Stable | ||
Intended Audience :: Developers | ||
License :: OSI Approved :: Apache Software License | ||
Programming Language :: Python :: 3 | ||
Programming Language :: Python :: 3 :: Only | ||
Development Status :: 5 - Production/Stable | ||
Intended Audience :: Developers | ||
License :: OSI Approved :: Apache Software License | ||
Programming Language :: Python :: 3 | ||
Programming Language :: Python :: 3 :: Only | ||
|
||
[options] | ||
packages = find: | ||
include_package_data = true | ||
python_requires = >=3.6 | ||
install_requires = | ||
zipp>=0.5 | ||
typing-extensions>=3.6.4; python_version < "3.8" | ||
zipp>=0.5 | ||
typing-extensions>=3.6.4; python_version < "3.8" | ||
setup_requires = setuptools_scm[toml] >= 3.4.1 | ||
|
||
[options.packages.find] | ||
exclude = | ||
tests* | ||
docs | ||
tests* | ||
docs | ||
|
||
[options.extras_require] | ||
testing = | ||
# upstream | ||
pytest >= 3.5, !=3.7.3 | ||
pytest-checkdocs >= 1.2.3 | ||
pytest-flake8 | ||
pytest-black >= 0.3.7; python_implementation != "PyPy" | ||
pytest-cov | ||
pytest-mypy; python_implementation != "PyPy" | ||
# jaraco/skeleton#22 | ||
jaraco.test >= 3.2.0 | ||
# upstream | ||
pytest >= 3.5, !=3.7.3 | ||
pytest-checkdocs >= 1.2.3 | ||
pytest-flake8 | ||
pytest-black >= 0.3.7; python_implementation != "PyPy" | ||
pytest-cov | ||
pytest-mypy; python_implementation != "PyPy" | ||
pytest-enabler | ||
|
||
# local | ||
importlib_resources>=1.3; python_version < "3.9" | ||
packaging | ||
pep517 | ||
pyfakefs | ||
flufl.flake8 | ||
# local | ||
importlib_resources>=1.3; python_version < "3.9" | ||
packaging | ||
pep517 | ||
pyfakefs | ||
flufl.flake8 | ||
|
||
docs = | ||
# upstream | ||
sphinx | ||
jaraco.packaging >= 3.2 | ||
rst.linker >= 1.9 | ||
# upstream | ||
sphinx | ||
jaraco.packaging >= 8.2 | ||
rst.linker >= 1.9 | ||
|
||
# local | ||
# local | ||
|
||
[options.entry_points] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters