Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
fmirus committed Jul 30, 2024
1 parent 902415d commit 32546c9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions scenario_execution/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@
# read the contents of the README file
this_directory = Path(__file__).parent
try:
long_description = (this_directory / "README.md").read_text()
LONG_DESCRIPTION = (this_directory / "README.md").read_text()
except: # pylint: disable=W0702
# in case we do colcon build --symlink-install, wo do not need the
# description
long_description = ''
LONG_DESCRIPTION = ''

setup(
name=PACKAGE_NAME,
Expand Down Expand Up @@ -58,7 +58,7 @@
"Issues": "https://github.com/IntelLabs/scenario_execution/issues",
},
description='Scenario Execution for Robotics',
long_description=long_description,
long_description=LONG_DESCRIPTION,
long_description_content_type='text/markdown',
license='Apache License 2.0',
classifiers=[
Expand Down

0 comments on commit 32546c9

Please sign in to comment.