Merge branch 'main' into qasm_with_quimb_backend

This commit is contained in:
liwei
2023-02-13 18:39:24 +08:00
committed by GitHub
2 changed files with 23 additions and 6 deletions

View File

@@ -3,12 +3,29 @@ import pathlib
PACKAGE = "qibotn" PACKAGE = "qibotn"
HERE = pathlib.Path(__file__).parent
LONG_DESCRIPTION = (HERE / "README.md").read_text(encoding="utf-8") # Returns the qibotn version
def get_version():
""" Gets the version from the package's __init__ file
if there is some problem, let it happily fail """
VERSIONFILE = os.path.join("src", PACKAGE, "__init__.py")
initfile_lines = open(VERSIONFILE, "rt").readlines()
VSRE = r"^__version__ = ['\"]([^'\"]*)['\"]"
for line in initfile_lines:
mo = re.search(VSRE, line, re.M)
if mo:
return mo.group(1)
# load long description from README
this_directory = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(this_directory, "README.md"), encoding="utf-8") as f:
long_description = f.read()
setup( setup(
name="qibotn", name="qibotn",
version="0.0.1", version=get_version(),
description="A tensor-network translation module for quantum computing", description="A tensor-network translation module for quantum computing",
author="The Qibo team", author="The Qibo team",
author_email="", author_email="",
@@ -39,6 +56,6 @@ setup(
], ],
}, },
python_requires=">=3.7.0", python_requires=">=3.7.0",
long_description=LONG_DESCRIPTION, long_description=long_description,
long_description_content_type="text/markdown", long_description_content_type='text/markdown',
) )

View File

@@ -1 +1 @@
__version__ = "0.0.1" __version__ = "0.0.1.dev0"