Skip to content
This repository has been archived by the owner on Mar 5, 2022. It is now read-only.

Commit

Permalink
Make a setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
spladug committed Dec 14, 2011
1 parent 044393c commit 6f2734e
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
*.pyc
build/
13 changes: 13 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
#!/usr/bin/python

from distutils.core import setup

from wessex import __version__

setup(name="Wessex",
version=__version__,
description="Client library for Harold",
author="Neil Williams",
author_email="neil@reddit.com",
url="http://github.com/spladug/wessex",
py_modules = ["wessex"])
1 change: 1 addition & 0 deletions wessex.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
import urlparse

__all__ = ['Harold']
__version__ = '1.0.0'

class Harold(object):
def __init__(self, host, secret, port=80, timeout=3):
Expand Down

0 comments on commit 6f2734e

Please sign in to comment.