Metadata-Version: 2.1
Name: swh.loader.mercurial
Version: 0.5.0
Summary: Software Heritage Mercurial Loader
Home-page: https://forge.softwareheritage.org/diffusion/DLDHG/
Author: Software Heritage developers
Author-email: swh-devel@inria.fr
License: UNKNOWN
Project-URL: Bug Reports, https://forge.softwareheritage.org/maniphest
Project-URL: Funding, https://www.softwareheritage.org/donate
Project-URL: Source, https://forge.softwareheritage.org/source/swh-loader-mercurial
Project-URL: Documentation, https://docs.softwareheritage.org/devel/swh-loader-mercurial/
Description: swh-loader-mercurial
        =========================
        
        The Software Heritage Mercurial Loader is a tool and a library to walk a local mercurial
        repository and inject into the SWH dataset all contained files that weren't known
        before.
        
        The main entry points are:
        - :class:`swh.loader.mercurial.loader.HgBundle20Loader` which reads and loads a remote
          repository (or local).
        
        - :class:`swh.loader.mercurial.from_disk.HgLoaderFromDisk` which reads and loads a local
          repository into an SWH archive.
        
        - :class:`swh.loader.mercurial.from_disk.HgArchiveLoaderFromDisk` which reads and loads
          a local repository wrapped within a tarball
        
        # CLI run
        
        ## Configuration file
        
        /tmp/mercurial.yml:
        ``` YAML
        storage:
          cls: remote
          args:
            url: http://localhost:5002/
        ```
        
        ## Basic use
        
        ``` bash
        swh loader --C /tmp/mercurial.yml run mercurial https://www.mercurial-scm.org/repo/hello
        ```
        or `mercurial_from_disk`
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Operating System :: OS Independent
Classifier: Development Status :: 4 - Beta
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Provides-Extra: testing
