diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e9cc071..825a9b6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -42,6 +42,7 @@ jobs: uses: pypa/gh-action-pypi-publish@release/v1 with: repository-url: https://test.pypi.org/legacy/ + skip-existing: true - name: Publish package to PyPI if: startsWith(github.ref, 'refs/tags') diff --git a/.gitignore b/.gitignore index b68a1c4..11e5ce9 100644 --- a/.gitignore +++ b/.gitignore @@ -3,6 +3,7 @@ *.install.stamp +dist .dist **/.pytest_cache/* .pytest_cache/ \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index a57dfeb..3748def 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,12 +1,12 @@ [tool.poetry] name = "sneakpeek-py" packages = [{ include = "sneakpeek" }] -version = "0.1.4" -description = "Tool box for creating scrapers, so that you only focus on scraping logic" +version = "0.1.5" +description = "Sneakpeek is a framework that helps to quickly and conviniently develop scrapers. It's the best choice for scrapers that have some specific complex scraping logic that needs to be run on a constant basis." authors = ["Dan Yazovsky "] maintainers = ["Dan Yazovsky "] repository = "https://github.com/flulemon/sneakpeek" -documentation = "https://github.com/flulemon/sneakpeek" +documentation = "https://sneakpeek-py.readthedocs.io/en/latest/" homepage = "https://github.com/flulemon/sneakpeek" license = "BSD-3-Clause" readme = "README.md"