sapling/setup.py
Jun Wu c2ee142960 setup: add errorredirect
Summary: We are shipping the config soon. Missed this one.

Test Plan: `setup.py build`

Reviewers: rmcelroy

Reviewed By: rmcelroy

Subscribers: #sourcecontrol

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

Tasks: 9259456

Signature: t1:2834261:1452877180:03b833b3fe54c3d461d6253cb709d3d186091fb2
2016-01-15 09:08:03 -08:00

55 lines
1.1 KiB
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=[
'automv',
'backups',
'chistedit',
'commitextras',
'dirsync',
'errorredirect',
'fbamend',
'fbconduit',
'fbhistedit',
'githelp',
'gitlookup',
'gitrevset',
'inhibitwarn',
'mergedriver',
'morestatus',
'perftweaks',
'phabdiff',
'phrevset',
'phabstatus',
'pullcreatemarkers',
'pushrebase',
'pushvars',
'rage',
'reflog',
'reset',
'show',
'simplecache',
'smartlog',
'sparse',
'statprof',
'tweakdefaults',
'upgradegeneraldelta',
],
packages=[
'copytrace',
]
)