sapling/setup.py
Rajesh Janakiraman 3cb6727ebe Added phabstatus to query phabricator for a diff status
Test Plan:
  rajeshj@rajeshj-mbp1:fbandroid  (checkup)$ hg log -r 45de9b --template '{phabstatus}'
  Needs Review

Reviewers: durham, rmcelroy

Differential Revision: https://phabricator.fb.com/D2632410
2015-11-09 21:24:13 +00:00

51 lines
1.0 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',
'fbamend',
'fbconduit',
'fbhistedit',
'githelp',
'gitlookup',
'gitrevset',
'inhibitwarn',
'mergedriver',
'morestatus',
'perftweaks',
'phabdiff',
'phrevset',
'phabstatus',
'pushrebase',
'pushvars',
'rage',
'reflog',
'reset',
'simplecache',
'smartlog',
'sparse',
'statprof',
'tweakdefaults',
'upgradegeneraldelta',
'writecg2',
],
packages=['crecord']
)