Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 10 additions & 2 deletions sdks/python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -316,8 +316,16 @@ def get_portability_package_data():
else:
extensions = []

long_description = ((Path(__file__).parent / "README.md") # pragma: no cover
.read_text(encoding='utf-8')) # pragma: no cover
try:
long_description = ((Path(__file__).parent /
"README.md").read_text(encoding='utf-8'))
except FileNotFoundError:
long_description = (
'Apache Beam is a unified programming model for both batch and '
'streaming data processing, enabling efficient execution across '
'diverse distributed execution engines and providing extensibility '
'points for connecting to different technologies and user '
'communities.')

# Keep all dependencies inlined in the setup call, otherwise Dependabot won't
# be able to parse it.
Expand Down
Loading