sapling/setup.py

28 lines
587 B
Python
Raw Normal View History

2013-06-20 23:16:36 +04:00
from distutils.core import setup, Extension
setup(
2013-06-20 23:57:57 +04:00
name='fbhgext',
2013-06-20 23:16:36 +04:00
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='',
2014-05-24 01:39:33 +04:00
py_modules=[
'backups',
'fbamend',
'fbhistedit',
2014-05-24 01:39:33 +04:00
'githelp',
'gitlookup',
'gitrevset',
2014-05-24 01:39:33 +04:00
'phrevset',
2014-10-10 22:32:17 +04:00
'reflog',
2014-05-24 01:39:33 +04:00
'smartlog',
'tweakdefaults',
2014-05-24 01:39:33 +04:00
],
packages=['crecord']
2013-06-20 23:16:36 +04:00
)