-
-
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.
Partially revert "Merge https://github.com/jaraco/skeleton"
- Loading branch information
Showing
7 changed files
with
23 additions
and
27 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
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
[pytest] | ||
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 | ||
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 | ||
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
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,8 +3,13 @@ | |
|
||
# 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' | ||
|
@@ -22,6 +27,7 @@ | |
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), | ||
|
@@ -44,15 +50,22 @@ | |
'more_itertools>=2.6', | ||
], | ||
extras_require={ | ||
'testing': [ | ||
'docs': [ | ||
# upstream | ||
'pytest>=3.5,!=3.7.3', | ||
'pytest-sugar>=0.9.1', | ||
'collective.checkdocs', | ||
'pytest-flake8', | ||
'sphinx', | ||
'rst.linker>=1.9', | ||
'jaraco.packaging>=3.2', | ||
|
||
# local | ||
'docutils', | ||
'alabaster', | ||
|
||
'collective.checkdocs', # needed for setup-check tox env | ||
], | ||
'testing': [ | ||
'ddt', | ||
'pytest>=2.8', | ||
'pytest-sugar>=0.9.1', | ||
'pytest-testmon>=0.9.7', | ||
'pytest-watch', | ||
|
||
|
@@ -64,16 +77,6 @@ | |
'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