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 d303568 commit 024aa3c
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 @@ -39,7 +40,7 @@
},
description="Extension for pytket, providing translation to and from the pyQuil "
"framework",
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 024aa3c

Please sign in to comment.