sapling/setup.py
Pierre-Yves David 85ecf16f11 setup: get the b2xcompat extension installed
Summary: Now that we have it, we wants it deployable

Test Plan:
ran setup.py install --prefix=/tmp/babar/

The file was there!

Reviewers: #sourcecontrol

Differential Revision: https://phabricator.fb.com/D1990894
2015-04-14 08:59:23 -07:00

37 lines
774 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=[
'b2xcompat',
'backups',
'chistedit',
'fbamend',
'fbhistedit',
'githelp',
'gitlookup',
'gitrevset',
'phabdiff',
'phrevset',
'rage',
'reflog',
'reset',
'simplecache',
'smartlog',
'sparse',
'tweakdefaults',
'upgradegeneraldelta',
'writecg2',
],
packages=['crecord']
)