Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,6 @@
*.pyc
MANIFEST
MANIFEST
/build
*.egg-info
/dist
.DS_Store
6 changes: 3 additions & 3 deletions cloudkick_api/__init__.py → cloudkick/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@


__all__ = ["__version__", "Connection"]
__version__ = "0.1.0-dev"
__version__ = "0.2.0"

from cloudkick_api.base import Connection
from cloudkick_api import fabhelper as fab
from cloudkick.base import Connection
from cloudkick import fabhelper as fab
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion cloudkick_api/fabhelper.py → cloudkick/fabhelper.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

import sys

from cloudkick_api.base import Connection
from cloudkick.base import Connection

_QUERY_CACHE = {}

Expand Down
2 changes: 1 addition & 1 deletion examples/gcharts.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
import simplejson as json


from cloudkick_api.base import Connection
from cloudkick.base import Connection
from pprint import pprint
from pygooglechart import SimpleLineChart
from pygooglechart import Axis
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

setup(
name='cloudkick',
version='0.1.0-dev',
version='0.2.0',
description='',
author='Cloudkick, Inc.',
author_email='[email protected]',
Expand Down