Skip to content
Snippets Groups Projects
Commit e890e844cb26 authored by Georges Racinet's avatar Georges Racinet
Browse files

General project structure

we will have a `gitaly` Mercurial extension, but that should
be just a thin registration layer for our command.

Most of the code will be in the `hgitaly` package, for maximum
flexibility and future proofing in case we really to evade from
the extension thing.
parent 22b40d5604f9
No related branches found
No related tags found
No related merge requests found
# HGitaly
HGitaly is Gitaly server for Mercurial.
# name space package to host third party extensions
from __future__ import absolute_import
import pkgutil
__path__ = pkgutil.extend_path(__path__, __name__)
setup.py 0 → 100644
from setuptools import setup
setup(
name='hgitaly',
version='0.0.1',
author='Georges Racinet',
author_email='georges.racinet@octobus.net',
url='https://dev.heptapod.net/heptapod/hgitaly',
description="Server-side implementation of Gitaly protocol for Mercurial",
long_description=open('README.md').read(),
keywords='hg mercurial heptapod gitlab',
license='GPLv2+',
package_data=dict(heptapod=['*.hgrc']),
packages=['hgitaly', 'hgext3rd.gitaly'],
install_requires=[],
)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment