Skip to content

Commit

Permalink
Bumping version to 0.0.3.
Browse files Browse the repository at this point in the history
  • Loading branch information
Josh Mervine committed Mar 26, 2014
1 parent 9d30d5d commit 726e851
Showing 1 changed file with 4 additions and 11 deletions.
15 changes: 4 additions & 11 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,25 +3,24 @@

options = {
"name" : "maxcdn",
"version" : "0.0.2",
"version" : "0.0.3",
"description" : "A Python REST Client for MaxCDN REST Web Services",
"author" : "Joshua P. Mervine",
"author_email" : "[email protected]",
"license" : "MIT",
"keywords" : "MAxCDN CDN API REST",
"keywords" : "MaxCDN CDN API REST",
"packages" : ['maxcdn'],
"url" : 'http://github.com/maxcdn/python-maxcdn'
}

# additional setuptools data (python 2.x)
install_requires = [
"requests",
"requests_oauthlib",
"certifi",
"certifi"
]
tests_require = [
"nose",
"mock",
"mock"
]
include_package_data = True

Expand All @@ -35,10 +34,4 @@
except ImportError:
print("ERROR: setuptools wasn't found, please install it")

#from distutils.core import setup
#setup(**options)
#print("WARNING: setuptools wasn't found, either install")
#print(" setuptools and rerun setup.py or manually install:")
#for p in install_requires:
#print(" - "+p)

0 comments on commit 726e851

Please sign in to comment.