Metadata-Version: 2.1
Name: git-me-the-url
Version: 2.0.3
Summary: Generate sharable links to your Git source
Home-page: https://github.com/amykyta3/git-me-the-url
Author: Alex Mykyta
Author-email: amykyta3@github.com
License: UNKNOWN
Project-URL: Source, https://github.com/amykyta3/git-me-the-url
Project-URL: Tracker, https://github.com/amykyta3/git-me-the-url/issues
Description: [![PyPI - Python Version](https://img.shields.io/pypi/pyversions/git-me-the-url.svg)](https://pypi.org/project/git-me-the-url)
        [![build](https://github.com/amykyta3/git-me-the-url/actions/workflows/build.yml/badge.svg)](https://github.com/amykyta3/git-me-the-url/actions?query=workflow%3Abuild+branch%3Amaster)
        
        # Git me the URL!
        
        A python package that translates references in a local git repository into
        shareable URLs for popular Git hosting sites.
        
        Currently supports:
        * GitHub
        * GitLab
        * Bitbucket
        
        To add your own URL translator, see this example project: https://github.com/amykyta3/gmtu-plugin-example
        
        ## Installing
        Install from [PyPi](https://pypi.org/project/git-me-the-url) using pip:
        
            python3 -m pip install git-me-the-url
        
        ## Command line application
        
        Use it for everyday link sharing with friends:
        
        ![cmd-example](https://raw.githubusercontent.com/amykyta3/git-me-the-url/master/docs/cmd-example.gif?sanitize=true)
        
        ## Python API
        
        Embed in your Python application:
        
        ```python
        from gitmetheurl import GitMeTheURL
        
        gmtu = GitMeTheURL()
        url = gmtu.get_source_url("my_git_repo/my_file.txt")
        print(url)
        ```
        
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Operating System :: OS Independent
Classifier: Topic :: Software Development :: Version Control :: Git
Description-Content-Type: text/markdown
