-
-
Notifications
You must be signed in to change notification settings - Fork 90
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
8 changed files
with
54 additions
and
40 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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
[flake8] | ||
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 |
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
File renamed without changes.
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 |
---|---|---|
@@ -0,0 +1,2 @@ | ||
[build-system] | ||
requires = ["setuptools>=30.3", "wheel", "setuptools_scm>=1.15"] |
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 @@ | ||
[pytest] | ||
norecursedirs=dist docs build .tox | ||
addopts=-v -rxs --testmon --doctest-modules --ignore cheroot/ssl/pyopenssl.py --junitxml=junit-test-results.xml --cov=cheroot --cov-report term-missing:skip-covered --cov-report xml | ||
norecursedirs=dist docs build .tox .eggs | ||
addopts=-v -rxs --testmon --doctest-modules --flake8 --ignore cheroot/ssl/pyopenssl.py --junitxml=junit-test-results.xml --cov=cheroot --cov-report term-missing:skip-covered --cov-report xml | ||
doctest_optionflags=ALLOW_UNICODE ELLIPSIS |
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,9 +1,9 @@ | ||
[aliases] | ||
release = dists upload | ||
dists = clean --all sdist bdist_wheel | ||
|
||
[bdist_wheel] | ||
universal = 1 | ||
|
||
[metadata] | ||
license_file = LICENSE.md | ||
license_file = LICENSE | ||
long_description = file:README.rst |
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 |
---|---|---|
|
@@ -3,13 +3,8 @@ | |
|
||
# Project skeleton maintained at https://github.com/jaraco/skeleton | ||
|
||
import io | ||
|
||
import setuptools | ||
|
||
with io.open('README.rst', encoding='utf-8') as readme: | ||
long_description = readme.read() | ||
|
||
name = 'cheroot' | ||
description = 'Highly-optimized, pure-python HTTP server' | ||
nspkg_technique = 'native' | ||
|
@@ -27,7 +22,6 @@ | |
author='CherryPy Team', | ||
author_email='[email protected]', | ||
description=description or name, | ||
long_description=long_description, | ||
url=repo_url, | ||
project_urls={ | ||
'CI: AppVeyor': 'https://ci.appveyor.com/project/{}'.format(repo_slug), | ||
|
@@ -50,20 +44,15 @@ | |
'more_itertools>=2.6', | ||
], | ||
extras_require={ | ||
'docs': [ | ||
'sphinx', | ||
'rst.linker>=1.9', | ||
'jaraco.packaging>=3.2', | ||
|
||
'docutils', | ||
'alabaster', | ||
|
||
'collective.checkdocs', | ||
], | ||
'testing': [ | ||
# upstream | ||
'pytest>=3.5,!=3.7.3', | ||
'pytest-sugar>=0.9.1', | ||
'collective.checkdocs', | ||
'pytest-flake8', | ||
|
||
# local | ||
'ddt', | ||
'pytest>=2.8', | ||
'pytest-sugar', | ||
'pytest-testmon>=0.9.7', | ||
'pytest-watch', | ||
|
||
|
@@ -75,6 +64,16 @@ | |
'pytest-cov', | ||
'backports.unittest_mock', | ||
], | ||
'docs': [ | ||
# upstream | ||
'sphinx', | ||
'jaraco.packaging>=3.2', | ||
'rst.linker>=1.9', | ||
|
||
# local | ||
'docutils', | ||
'alabaster', | ||
], | ||
}, | ||
setup_requires=[ | ||
'setuptools_scm>=1.15.0', | ||
|
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