sapling/setup.py
Laurent Charignon 59bcb8e5c0 fastmanifest: add python to C layer
Summary: This adds the CPythong interface layer for fastmanifest

Test Plan: Compiles

Reviewers: ttung, durham

Differential Revision: https://phabricator.fb.com/D3157095
2016-04-08 11:48:31 -07:00

67 lines
1.4 KiB
Python

try:
from setuptools import setup, Extensions
except ImportError:
from distutils.core import setup, Extension
setup(
name='fbhgext',
version='0.1.2',
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=[
'arcdiff',
'automv',
'backups',
'bundle2hooks',
'catnotate',
'chistedit',
'commitextras',
'dirsync',
'errorredirect',
'extutil',
'fastmanifest',
'fbamend',
'fbconduit',
'fbhistedit',
'githelp',
'gitlookup',
'gitrevset',
'inhibitwarn',
'logtoprocess',
'manifestdiskcache',
'mergedriver',
'morestatus',
'perftweaks',
'phabdiff',
'phrevset',
'phabstatus',
'pullcreatemarkers',
'pushrebase',
'pushvars',
'rage',
'reflog',
'reset',
'show',
'simplecache',
'smartlog',
'sparse',
'statprof',
'suppresscommandfailure',
'tweakdefaults',
'upgradegeneraldelta',
],
packages=[
'copytrace',
],
ext_modules = [
Extension('fastmanifest_wrapper',
sources=['fastmanifest_wrapper.c']),
],
)