summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Crute <mcrute@gmail.com>2010-05-06 00:03:11 -0400
committerMike Crute <mcrute@gmail.com>2010-05-06 00:03:11 -0400
commitef76b13694d797b6df6e5866b3671cfca8d22563 (patch)
treecc0825fea566a70ca8ed486979fefc6b9ea0373a
parent5651f6658e5055ba43aee1d30884d949938ca1a4 (diff)
downloadhg_sshsign-ef76b13694d797b6df6e5866b3671cfca8d22563.tar.bz2
hg_sshsign-ef76b13694d797b6df6e5866b3671cfca8d22563.tar.xz
hg_sshsign-ef76b13694d797b6df6e5866b3671cfca8d22563.zip
Making the packaging suck less.
-rw-r--r--hgsshsign/__init__.py (renamed from __init__.py)2
-rw-r--r--hgsshsign/keymanifest.py (renamed from keymanifest.py)0
-rw-r--r--hgsshsign/keys.py (renamed from keys.py)0
-rw-r--r--hgsshsign/sshagent.py (renamed from sshagent.py)0
-rw-r--r--hgsshsign/structutils.py (renamed from structutils.py)0
-rwxr-xr-xsetup.py15
6 files changed, 17 insertions, 0 deletions
diff --git a/__init__.py b/hgsshsign/__init__.py
index a783fc3..7b3f488 100644
--- a/__init__.py
+++ b/hgsshsign/__init__.py
@@ -14,6 +14,8 @@ Ponder this, bitches:
14 http://svn.osafoundation.org/m2crypto/trunk/SWIG/_rsa.i 14 http://svn.osafoundation.org/m2crypto/trunk/SWIG/_rsa.i
15""" 15"""
16 16
17__version__ = "0.0.1dev"
18
17 19
18import keys 20import keys
19from keymanifest import KeyManifest 21from keymanifest import KeyManifest
diff --git a/keymanifest.py b/hgsshsign/keymanifest.py
index 25fa423..25fa423 100644
--- a/keymanifest.py
+++ b/hgsshsign/keymanifest.py
diff --git a/keys.py b/hgsshsign/keys.py
index d15af08..d15af08 100644
--- a/keys.py
+++ b/hgsshsign/keys.py
diff --git a/sshagent.py b/hgsshsign/sshagent.py
index cd5fa20..cd5fa20 100644
--- a/sshagent.py
+++ b/hgsshsign/sshagent.py
diff --git a/structutils.py b/hgsshsign/structutils.py
index 727d22e..727d22e 100644
--- a/structutils.py
+++ b/hgsshsign/structutils.py
diff --git a/setup.py b/setup.py
new file mode 100755
index 0000000..2f9dd82
--- /dev/null
+++ b/setup.py
@@ -0,0 +1,15 @@
1from setuptools import setup
2from hgsshsign import __version__
3
4
5setup(
6 name="hg-sshsign",
7 description="ssh signing for mercurial commits",
8 author="Mike Crute",
9 author_email="mcrute@gmail.com",
10 url="http://code.google.com/p/hg-sshsign",
11 license="Apache 2.0",
12 version=__version__,
13 install_requires=[
14 "M2Crypto",
15 ])