Skip to content

Commit

Permalink
fix setup path
Browse files Browse the repository at this point in the history
  • Loading branch information
cqc-melf committed Oct 4, 2024
1 parent 20dd3b7 commit 7c09755
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@

import os
import shutil
from pathlib import Path

from setuptools import find_namespace_packages, setup # type: ignore

Expand All @@ -38,7 +39,7 @@
"Tracker": "https://github.com/CQCL/pytket-qulacs/issues",
},
description="Extension for pytket, providing access to the Qulacs Simulator",
long_description=open("README.md").read(),
long_description=(Path(__file__).parent / "README.md").read_text(),
long_description_content_type="text/markdown",
license="Apache 2",
packages=find_namespace_packages(include=["pytket.*"]),
Expand Down

0 comments on commit 7c09755

Please sign in to comment.