summaryrefslogtreecommitdiff
path: root/hgsshsign/_meta.py
blob: 53bc8be2c2f2e5ea91ecdec4a40221696ed273c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# vim:filetype=python:fileencoding=utf-8

__version__ = "0.1.0"

SETUP_ARGS = dict(
    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__,
    packages=['hgsshsign'],
    install_requires=[
        "M2Crypto",
    ],
)