diff options
author | Bryan Brattlof <bryanbrattlof@gmail.com> | 2019-09-08 20:08:49 -0500 |
---|---|---|
committer | Bryan Brattlof <bryanbrattlof@gmail.com> | 2019-09-08 20:47:07 -0500 |
commit | 01958e67a3c440e6bc66123bc48ac7a37a89a6a7 (patch) | |
tree | 0ff9eeda3869870a19cb9adac1f50778510e6a23 | |
parent | d9a19e2ee9eb96225cbc06aa5794894a07218ca9 (diff) | |
download | pelican-htmlmin-01958e67a3c440e6bc66123bc48ac7a37a89a6a7.tar.gz pelican-htmlmin-01958e67a3c440e6bc66123bc48ac7a37a89a6a7.tar.bz2 |
add gitlab-ci & license files
-rw-r--r-- | .gitlab-ci.yml | 11 | ||||
-rw-r--r-- | license.txt | 18 | ||||
-rw-r--r-- | readme.rst | 1 |
3 files changed, 30 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..a4cc4cc --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,11 @@ +image: python:latest + +pypi: + stage: deploy + before_script: + - pip install twine + - python setup.py sdist bdist_wheel + script: + - twine upload dist/* + only: + - tags
\ No newline at end of file diff --git a/license.txt b/license.txt new file mode 100644 index 0000000..cdfa46f --- /dev/null +++ b/license.txt @@ -0,0 +1,18 @@ +Copyright 2019 Bryan Brattlof + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software is furnished to do so, +subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS +FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR +COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER +IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN +CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. @@ -56,6 +56,7 @@ will not minify files. You can override this using the :code:`HTMLMIN_DEBUG`: .. code-block:: python + # minify generated files only if pelican is in DEBUG mode HTMLMIN_DEBUG = logger.getEffectiveLevel() == logging.DEBUG HTMLMIN_MATCH |