sapling/setup.py
Ryan McElroy 76ff0ca413 Create simple cache for export and log
Test Plan:
 * New test
 * Ran all mercurial tests with this extension enabled. Most tests passed, and the ones that failed were due to additional output thansk to the enabled extension (eg, help screens mentioning the extenstion, and config dumps listing the extension as enabled).

Reviewers: sid0, davidsp, pyd, durham

Reviewed By: durham

Subscribers: ps

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

Tasks: 5503905

Signature: t1:1691116:1418066154:9d0950b7395038a7fa95b4ec26f9360ea2db9fc6
2014-11-19 10:10:03 -08:00

34 lines
702 B
Python

from distutils.core import setup, Extension
setup(
name='fbhgext',
version='0.1.0',
author='Durham Goode',
maintainer='Durham Goode',
maintainer_email='durham@fb.com',
url='',
description='Facebook specific mercurial extensions',
long_description="",
keywords='fb hg mercurial',
license='',
py_modules=[
'backups',
'chistedit',
'fbamend',
'fbhistedit',
'githelp',
'gitlookup',
'gitrevset',
'phabdiff',
'phrevset',
'rage',
'reflog',
'reset',
'simplecache',
'smartlog',
'sparse',
'tweakdefaults',
],
packages=['crecord']
)