from distutils.core import setup, Extension setup( name='hgsql', version='0.1', author='Durham Goode', maintainer='Durham Goode', maintainer_email='durham@fb.com', url='', description='HGSQL extension for Mercurial', long_description=""" This extension adds support for Mercurial storing it's data in SQL, thus allowing multiple Mercurial servers to serve the same repository. """.strip(), keywords='hg sql mercurial hgsql', license='Not determined yet', py_modules=['hgsql'] )