diff --git a/LICENSE b/LICENSE index e44a896d0..db8815284 100644 --- a/LICENSE +++ b/LICENSE @@ -1,4 +1,6 @@ -Copyright (c) 2009 Jacob Kaplan-Moss +Copyright (c) 2009 Jacob Kaplan-Moss - initial codebase +Copyright (c) 2011 Rackspace - OpenStack extensions + All rights reserved. Redistribution and use in source and binary forms, with or without @@ -24,4 +26,4 @@ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/setup.cfg b/setup.cfg index 362afb171..bf5354305 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [nosetests] with-coverage = true -cover-package = cloudservers +cover-package = novatools cover-html = true cover-erase = true cover-inclusive = true @@ -11,4 +11,4 @@ build-dir = docs/_build all_files = 1 [upload_sphinx] -upload-dir = docs/_build/html \ No newline at end of file +upload-dir = docs/_build/html diff --git a/setup.py b/setup.py index c56704c0f..d3b33a6eb 100644 --- a/setup.py +++ b/setup.py @@ -10,14 +10,14 @@ if sys.version_info < (2,6): requirements.append('simplejson') setup( - name = "python-cloudservers", + name = "python-novatools", version = "1.2", - description = "Client library for Rackspace's Cloud Servers API", + description = "Client library for OpenStack Nova API", long_description = read('README.rst'), - url = 'http://packages.python.org/python-cloudservers', + url = 'https://github.com/rackspace/python-novatools', license = 'BSD', - author = 'Jacob Kaplan-Moss', - author_email = 'jacob@jacobian.org', + author = 'Rackspace, based on work by Jacob Kaplan-Moss', + author_email = 'github@racklabs.com', packages = find_packages(exclude=['tests']), classifiers = [ 'Development Status :: 5 - Production/Stable', @@ -34,6 +34,6 @@ setup( test_suite = "nose.collector", entry_points = { - 'console_scripts': ['cloudservers = cloudservers.shell:main'] + 'console_scripts': ['novatools = novatools.shell:main'] } -) \ No newline at end of file +)