Files
final-qibotn/setup.py
2023-02-07 09:27:10 +01:00

38 lines
999 B
Python

# Installation script for python
from setuptools import setup, find_packages
import pathlib
PACKAGE = "qibotn"
HERE = pathlib.Path(__file__).parent
LONG_DESCRIPTION = (HERE / "README.md").read_text(encoding="utf-8")
setup(
name="qibotn",
version="0.0.1",
description="A tensor-network translation module for quantum computing",
author="The Qibo team",
author_email="",
url="https://github.com/qiboteam/qibotn",
packages=find_packages("src"),
package_dir={"": "src"},
package_data={"": ["*.out", "*.yml"]},
include_package_data=True,
zip_safe=False,
classifiers=[
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Physics",
],
install_requires=[
"quimb",
"qibo",
],
extras_require={
"docs": [],
"tests": ["pytest", "pytest-cov"],
},
python_requires=">=3.7.0",
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
)