Skip to content
This repository has been archived by the owner on Apr 24, 2018. It is now read-only.

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
Kenneth Reitz committed Aug 27, 2011
1 parent 1c708ee commit 8b5ab99
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
4 changes: 3 additions & 1 deletion envoy/__init__.py
@@ -1 +1,3 @@
from core import *
from core import *

from core import __version__
3 changes: 3 additions & 0 deletions envoy/core.py
Expand Up @@ -11,6 +11,9 @@
import shlex


__version__ = '0.0.0'


class Response(object):
"""A command's response"""

Expand Down
4 changes: 2 additions & 2 deletions setup.py
Expand Up @@ -3,7 +3,7 @@

import os
import sys
import requests
import envoy

try:
from setuptools import setup
Expand All @@ -24,7 +24,7 @@

setup(
name='envoy',
version=requests.__version__,
version=envoy.__version__,
description='Simple API for running external processes.',
long_description=open('README.rst').read(),
author='Kenneth Reitz',
Expand Down

0 comments on commit 8b5ab99

Please sign in to comment.