diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 7e2587e..2622287 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,7 +2,7 @@ Changelog ========= -Version 0.1 +Version 1.0.0 =========== -- Initial release \ No newline at end of file +- Initial release diff --git a/README.rst b/README.rst index 855446b..3a8b9a4 100644 --- a/README.rst +++ b/README.rst @@ -44,8 +44,8 @@ And the correct metadata:: Subject: Personal Data Protection Bill Keywords: privacy, surveillance, personal data protection Author: Medianama - Creator: pystitcher/0.0.1 - Producer: pystitcher/0.0.1 + Creator: pystitcher/1.0.0 + Producer: pystitcher/1.0.0 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 | +=====================+==========================================================================+ | fit | Default fit of the bookmark. Can be overwritten per bookmark | -| | See `Wiki `_ | +| | See `wiki `_ | | | for more details. | +---------------------+--------------------------------------------------------------------------+ | 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. | | | Options are ``keep``, ``flatten``, and ``remove``. See | -| | `Wiki `_ | +| | `docs `_ | | | for more details. | +---------------------+--------------------------------------------------------------------------+ diff --git a/tox.ini b/tox.ini new file mode 100644 index 0000000..dee6bce --- /dev/null +++ b/tox.ini @@ -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/*