sapling/setup.py
Durham Goode 84bc49f25d checkcode: fix shallowrepo, shallowutil, and setup.py
Summary: Fix failures found by check-code.

Test Plan: Ran the tests

Reviewers: #sourcecontrol, ttung

Reviewed By: ttung

Differential Revision: https://phabricator.fb.com/D3221375

Signature: t1:3221375:1461648312:7dbdd59e6370cb32b90d864a623d8066028741e7
2016-04-26 13:00:31 -07:00

19 lines
617 B
Python

from distutils.core import setup, Extension
setup(
name='remotefilelog',
version='0.2',
author='Durham Goode',
maintainer='Durham Goode',
maintainer_email='durham@fb.com',
url='https://bitbucket.org/facebook/remotefilelog',
description='Remote filelog extension for Mercurial',
long_description="This extension adds support for remote filelogs in "
"Mercurial where all the file history is stored remotely.".strip(),
keywords='hg shallow mercurial remote filelog',
license='GPLv2+',
packages=['remotefilelog'],
install_requires=['lz4'],
ext_modules = []
)