Newer
Older
from setuptools import setup, find_packages
with open('install-requirements.txt', 'r') as install_reqf:
install_req = [req.strip() for req in install_reqf]
author='Georges Racinet',
author_email='georges.racinet@octobus.net',
url='https://foss.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+',
install_requires=install_req,