-
Notifications
You must be signed in to change notification settings - Fork 3.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Separate out wpt-specific parts of config from wptserve
This moves the parts of the Config class that are specific to wpt into serve.Config, so that wptserve can be used independently of the rest of wpt. It also moves the sslutils module into wptserve since this is required for the ssl configuration in wptserve and isn't useful independently. As part of this, the config.default.json file is removed in favour of a default configuration defined in the class itself.
- Loading branch information
Showing
14 changed files
with
134 additions
and
123 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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
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,6 +1,6 @@ | ||
from setuptools import setup | ||
|
||
PACKAGE_VERSION = '1.4.0' | ||
PACKAGE_VERSION = '2.0' | ||
deps = ["six>=1.8"] | ||
|
||
setup(name='wptserve', | ||
|
@@ -16,7 +16,7 @@ | |
author_email='[email protected]', | ||
url='http://wptserve.readthedocs.org/', | ||
license='BSD', | ||
packages=['wptserve'], | ||
packages=['wptserve', 'wptserve.sslutils'], | ||
include_package_data=True, | ||
zip_safe=False, | ||
install_requires=deps | ||
|
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
Oops, something went wrong.