Skip to content

Commit

Permalink
Fix Python readme (#43)
Browse files Browse the repository at this point in the history
* Fix Python readme

* Fix quotes
  • Loading branch information
dinvlad authored Apr 19, 2024
1 parent 94a4a4c commit a06e243
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions server/README.md
4 changes: 2 additions & 2 deletions server/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from setuptools import find_packages, setup

cwd = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(cwd, '..', 'README.md'), encoding='utf-8') as f:
with open(os.path.join(cwd, 'README.md'), encoding='utf-8') as f:
long_description = f.read()

setup(
Expand Down Expand Up @@ -39,7 +39,7 @@
},
install_requires=[
'cromwell-tools == 2.3.0',
"miniwdl >= 1.1.5",
'miniwdl >= 1.1.5',
'pygls == 0.8.1',
],
entry_points={
Expand Down

0 comments on commit a06e243

Please sign in to comment.