diff --git a/setup.py b/setup.py index 5ecc19389c..2e7e7ca58a 100644 --- a/setup.py +++ b/setup.py @@ -6,6 +6,8 @@ from setuptools import find_packages, setup +version = '2.2a0' + install_requires = [ 'sqlparse >= 0.3.0', 'google-cloud >= 0.34.0', @@ -17,7 +19,7 @@ # Duplicate version here rather than using # __import__('django_spanner').__version__ because that file imports # django and google.cloud which may not be installed. - version='2.2a0', + version=version, author='Google LLC', author_email='cloud-spanner-developers@googlegroups.com', description=('Bridge to enable using Django with Spanner.'),