summaryrefslogtreecommitdiff
path: root/hgsshsign/_meta.py
blob: 2df5e4bc957e758cd71a112d2e1204df3f78955d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# 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",
    ],
    test_suite='hgsshsign.tests.itest_all',
    zip_safe=True,
)