5 Star 4 Fork 1

Gitee 极速下载/qiskit-metal

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
此仓库是为了提升国内下载速度的镜像仓库,每日同步一次。 原始仓库: https://github.com/Qiskit/qiskit-metal
克隆/下载
setup.py 2.14 KB
一键复制 编辑 原始数据 按行查看 历史
"""A setuptools based setup module.
Run using:
$ python -m pip install <flags> .
Most used flags:
-e, --editable <path/url>
Install a project in editable mode (i.e. setuptools “develop mode”)
from a local project path or a VCS url.
-v, --verbose
Give more output.
"""
# pylint: disable=invalid-name
from pathlib import Path
from setuptools import find_packages, setup
here = Path(__file__).parent.absolute() # pylint: disable=no-member
# Get the long description from the README file
with open(here / "README.md", encoding="utf-8") as f:
long_description = f.read()
with open(here / "requirements.txt", encoding="utf-8") as f:
requirements = f.read().splitlines()
setup(
name="qiskit_metal",
version="0.1.5",
description="Qiskit Metal | for quantum device design & analysis",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/Qiskit/qiskit-metal",
author="Qiskit Metal Development Team",
author_email="[email protected]",
license="Apache 2.0",
classifiers=[
"License :: OSI Approved :: Apache Software License",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Scientific/Engineering",
],
keywords="qiskit sdk quantum eda",
packages=find_packages(),
package_data={
"": [
"*.ui",
"*.qrc",
"_imgs/*.png",
"_imgs/*.txt",
"styles/*/style.qss",
"styles/*/rc/*.png",
]
},
python_requires=">=3.9",
install_requires=requirements,
project_urls={
"Bug Tracker": "https://github.com/Qiskit/qiskit-metal/issues",
"Documentation": "https://qiskit-community.github.io/qiskit-metal/",
"Source Code": "https://github.com/Qiskit/qiskit-metal",
},
)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/mirrors/qiskit-metal.git
[email protected]:mirrors/qiskit-metal.git
mirrors
qiskit-metal
qiskit-metal
main

搜索帮助