We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents a85dfc2 + 82f2fb3 commit e27dfc9Copy full SHA for e27dfc9
gcloud/__init__.py
@@ -1,4 +1,5 @@
1
"""GCloud API access in idiomatic Python."""
2
3
+from pkg_resources import get_distribution
4
-__version__ = '0.02.2'
5
+__version__ = get_distribution('gcloud').version
setup.py
@@ -23,7 +23,7 @@
23
24
setup(
25
name='gcloud',
26
- version='0.02.2',
+ version='0.3.0',
27
description='API Client library for Google Cloud',
28
author='JJ Geewax',
29
author_email='[email protected]',
@@ -32,8 +32,6 @@
32
packages=find_packages(),
33
license='Apache 2.0',
34
platforms='Posix; MacOS X; Windows',
35
- package_data={'': ['gcloud/datastore/demo.key',
36
- 'gcloud/storage/demo.key']},
37
include_package_data=True,
38
zip_safe=False,
39
install_requires=REQUIREMENTS,
0 commit comments