Skip to content

Commit 726e851

Browse files
author
Josh Mervine
committed
Bumping version to 0.0.3.
1 parent 9d30d5d commit 726e851

File tree

1 file changed

+4
-11
lines changed

1 file changed

+4
-11
lines changed

setup.py

Lines changed: 4 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -3,25 +3,24 @@
33

44
options = {
55
"name" : "maxcdn",
6-
"version" : "0.0.2",
6+
"version" : "0.0.3",
77
"description" : "A Python REST Client for MaxCDN REST Web Services",
88
"author" : "Joshua P. Mervine",
99
"author_email" : "[email protected]",
1010
"license" : "MIT",
11-
"keywords" : "MAxCDN CDN API REST",
11+
"keywords" : "MaxCDN CDN API REST",
1212
"packages" : ['maxcdn'],
1313
"url" : 'http://github.com/maxcdn/python-maxcdn'
1414
}
1515

16-
# additional setuptools data (python 2.x)
1716
install_requires = [
1817
"requests",
1918
"requests_oauthlib",
20-
"certifi",
19+
"certifi"
2120
]
2221
tests_require = [
2322
"nose",
24-
"mock",
23+
"mock"
2524
]
2625
include_package_data = True
2726

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

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

0 commit comments

Comments
 (0)