sapling/setup.py
Alecs King 1b5f10e092 hg rage
Summary: add a 'hg rage' to log info and file a task.

Test Plan:
Here's a sample run with task and paste:

[int@dev1158]~/test% hg rage
pasting the rage info:
https://phabricator.fb.com/P17065959
filing the task:
https://our.intern.facebook.com/intern/tasks/?t=5544589

Reviewers: sid0, durham

Reviewed By: durham

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

Tasks: 5436255

Signature: t1:1660543:1415220586:9ce4431277ccccc86e98d01ed246e12e297fcfe0
2014-11-03 23:03:09 -08:00

30 lines
620 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',
'fbamend',
'fbhistedit',
'githelp',
'gitlookup',
'gitrevset',
'phrevset',
'rage',
'reflog',
'reset',
'smartlog',
'tweakdefaults',
],
packages=['crecord']
)