summaryrefslogtreecommitdiff
path: root/setup.py
blob: 2f9dd8219304ed3923339b09b4d7e66121fe391c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
from setuptools import setup
from hgsshsign import __version__


setup(
    name="hg-sshsign",
    description="ssh signing for mercurial commits",
    author="Mike Crute",
    author_email="mcrute@gmail.com",
    url="http://code.google.com/p/hg-sshsign",
    license="Apache 2.0",
    version=__version__,
    install_requires=[
        "M2Crypto",
    ])