Skip to main content

Utility for use in gitlab ci to create python repo web pages from project tags

Project description

This python script uses the gitlab api to inspect all tags for the a project and build a python repository index to be used for automated installations with pip. This is best used in Gitlab CI in conjunction with gitlab_release package to first attach a python package to the current build tag, after which this can be used to generate a static web page to be hosted by gitlab which pip can be pointed to as an index to install your package. This can assist in distributing python packages that aren’t suitable for publishing on PyPI official index.

It can be used in a gitlab-ci.yml stage like:

release:
  stage: release
  script:
    - python3 setup.py sdist bdist_wheel
    - pip3 install gitlab_release
    - python3 -m gitlab_release $PRIVATE_TOKEN dist/*
  only:
    - tags

pages:
  stage: deploy
  script:
    - pip3 install gitlab_tags_to_pip_index
    - python3 -m gitlab_tags_to_pip_index ./public
  only:
    - tags
  artifacts:
    paths:
    - public

# Or if you want to include master builds as pre-release
pages:
  stage: deploy
  script:
    - mkdir -p ./public
    - mv ./*.whl ./public/
    - pip3 install gitlab_tags_to_pip_index
    - python3 -m gitlab_tags_to_pip_index --pre './public/*.whl' ./public
  artifacts:
    paths:
    - public

See https://pypi.python.org/pypi/gitlab-release for more information about gitlab_release script.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

gitlab_tags_to_pip_index-1.9-py3-none-any.whl (4.7 kB view details)

Uploaded Python 3

File details

Details for the file gitlab_tags_to_pip_index-1.9-py3-none-any.whl.

File metadata

  • Download URL: gitlab_tags_to_pip_index-1.9-py3-none-any.whl
  • Upload date:
  • Size: 4.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.36.1 CPython/3.7.4

File hashes

Hashes for gitlab_tags_to_pip_index-1.9-py3-none-any.whl
Algorithm Hash digest
SHA256 728409c0204d4a90f203b0969426c97b9fe8da0604b0c84990694ae2b6140a65
MD5 992ad8e969a43807158cea4cc0824d1d
BLAKE2b-256 411509006bc41c3bc8b4095a77616d7733475e3c3b02b20e28829f21505f0af0

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page