[release] v1.0.0

This commit is contained in:
Nemo 2021-05-28 23:53:04 +05:30
parent 676b69d4d2
commit b97c9029ef
3 changed files with 29 additions and 6 deletions

View File

@ -2,7 +2,7 @@
Changelog Changelog
========= =========
Version 0.1 Version 1.0.0
=========== ===========
- Initial release - Initial release

View File

@ -44,8 +44,8 @@ And the correct metadata::
Subject: Personal Data Protection Bill Subject: Personal Data Protection Bill
Keywords: privacy, surveillance, personal data protection Keywords: privacy, surveillance, personal data protection
Author: Medianama Author: Medianama
Creator: pystitcher/0.0.1 Creator: pystitcher/1.0.0
Producer: pystitcher/0.0.1 Producer: pystitcher/1.0.0
Configuration options can be specified with Meta data at the top of the file. Configuration options can be specified with Meta data at the top of the file.
@ -53,7 +53,7 @@ Configuration options can be specified with Meta data at the top of the file.
| Option | Notes | | Option | Notes |
+=====================+==========================================================================+ +=====================+==========================================================================+
| fit | Default fit of the bookmark. Can be overwritten per bookmark | | fit | Default fit of the bookmark. Can be overwritten per bookmark |
| | See `Wiki <https://github.com/captn3m0/pystitcher/wiki/Zoom-Levels>`_ | | | See `wiki <https://github.com/captn3m0/pystitcher/wiki/Zoom-Levels>`_ |
| | for more details. | | | for more details. |
+---------------------+--------------------------------------------------------------------------+ +---------------------+--------------------------------------------------------------------------+
| author | PDF Author | | author | PDF Author |
@ -67,6 +67,6 @@ Configuration options can be specified with Meta data at the top of the file.
+---------------------+--------------------------------------------------------------------------+ +---------------------+--------------------------------------------------------------------------+
| existing_bookmarks | What to do with existing bookmarks in individual files. | | existing_bookmarks | What to do with existing bookmarks in individual files. |
| | Options are ``keep``, ``flatten``, and ``remove``. See | | | Options are ``keep``, ``flatten``, and ``remove``. See |
| | `Wiki <https://github.com/captn3m0/pystitcher/wiki/Existing-Bookmarks>`_ | | | `docs <https://github.com/captn3m0/pystitcher/wiki/Existing-Bookmarks>`_ |
| | for more details. | | | for more details. |
+---------------------+--------------------------------------------------------------------------+ +---------------------+--------------------------------------------------------------------------+

23
tox.ini Normal file
View File

@ -0,0 +1,23 @@
# Tox configuration file
# Read more under https://tox.readthedocs.org/
# THIS SCRIPT IS SUPPOSED TO BE AN EXAMPLE. MODIFY IT ACCORDING TO YOUR NEEDS!
[tox]
minversion = 3.15
envlist = default
[publish]
description =
Publish the package you have been developing to a package index server.
By default, it uses testpypi. If you really want to publish your package
to be publicly accessible in PyPI, use the `-- --repository pypi` option.
skip_install = True
changedir = {toxinidir}
passenv =
TWINE_USERNAME
TWINE_PASSWORD
TWINE_REPOSITORY
deps = twine
commands =
python -m twine check dist/*
python -m twine upload {posargs:--repository testpypi} dist/*