sapling/setup.py
2015-03-06 12:57:08 -08:00

36 lines
753 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',
'upgradegeneraldelta',
'writecg2',
],
packages=['crecord']
)