We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4376f2d commit 1207490Copy full SHA for 1207490
setup.py
@@ -19,13 +19,16 @@
19
with open(path.join(here, 'requirements.txt'), 'r') as f:
20
req_list = f.read().splitlines()
21
22
+with open(path.join(here, 'shakecast/version'), 'r') as f:
23
+ release_version = f.read()
24
+
25
setup(
26
name='usgs-shakecast',
27
28
# Versions should comply with PEP440. For a discussion on single-sourcing
29
# the version across setup.py and the project code, see
30
# https://packaging.python.org/en/latest/single_source_version.html
- version='4.1.1',
31
+ version=release_version,
32
33
description='Real time facility monitoring and notifications for earthquake impacts',
34
long_description=long_description,
0 commit comments