Skip to content
This repository has been archived by the owner on Nov 25, 2017. It is now read-only.

Commit

Permalink
Fixed setup.py and MANIFEST to include README and docs. Bumped versio…
Browse files Browse the repository at this point in the history
…n to 1.0a4.
  • Loading branch information
jacobian committed Dec 14, 2009
1 parent 0c27daa commit b362faa
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -4,4 +4,5 @@ distribute-*
cover/ cover/
pip-log.txt pip-log.txt
/.coverage /.coverage
/dist /dist
/build
3 changes: 3 additions & 0 deletions MANIFEST.in
Original file line number Original file line Diff line number Diff line change
@@ -0,0 +1,3 @@
include README.rst
recursive-include docs *
recursive-include tests *
4 changes: 2 additions & 2 deletions setup.py
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@ def read(fname):


setup( setup(
name = "python-cloudservers", name = "python-cloudservers",
version = "1.0a3", version = "1.0a4",
description = "Client library for Rackspace's Cloud Servers API", description = "Client library for Rackspace's Cloud Servers API",
long_description = read('README.rst'), long_description = read('README.rst'),
url = 'http://packages.python.org/python-cloudservers', url = 'http://packages.python.org/python-cloudservers',
license = 'BSD', license = 'BSD',
author = 'Jacob Kaplan-Moss', author = 'Jacob Kaplan-Moss',
author_email = 'jacob@jacobian.org', author_email = 'jacob@jacobian.org',
packages = find_packages(), packages = find_packages(exclude=['distribute_setup', 'tests']),
classifiers = [ classifiers = [
'Development Status :: 3 - Alpha', 'Development Status :: 3 - Alpha',
'Environment :: Console', 'Environment :: Console',
Expand Down

0 comments on commit b362faa

Please sign in to comment.