sapling/setup.py
2015-11-02 14:58:06 -08:00

49 lines
1020 B
Python

try:
from setuptools import setup
except ImportError:
from distutils.core import setup
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',
'commitextras',
'dirsync',
'fbamend',
'fbconduit',
'fbhistedit',
'githelp',
'gitlookup',
'gitrevset',
'inhibitwarn',
'mergedriver',
'morestatus',
'perftweaks',
'phabdiff',
'phrevset',
'pushrebase',
'pushvars',
'rage',
'reflog',
'reset',
'simplecache',
'smartlog',
'sparse',
'statprof',
'tweakdefaults',
'upgradegeneraldelta',
'writecg2',
],
packages=['crecord']
)