4 Star 5 Fork 2

Gitee 极速下载/Cirq

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
此仓库是为了提升国内下载速度的镜像仓库,每日同步一次。 原始仓库: https://github.com/quantumlib/cirq
克隆/下载
setup.py 3.45 KB
一键复制 编辑 原始数据 按行查看 历史
# Copyright 2018 The Cirq Developers
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import runpy
from setuptools import setup
from dev_tools import modules
from dev_tools.requirements import explode
# This reads the __version__ variable from cirq-core/cirq/_version.py
__version__ = runpy.run_path('cirq-core/cirq/_version.py')['__version__']
assert __version__, 'Version string cannot be empty'
name = 'cirq'
description = (
'A framework for creating, editing, and invoking '
'Noisy Intermediate Scale Quantum (NISQ) circuits.'
)
# README file as long_description.
long_description = open('README.md', encoding='utf-8').read()
# This is a pure metapackage that installs all our packages
requirements = [f'{p.name}=={p.version}' for p in modules.list_modules()]
# Exclude cirq-rigetti so that cirq can be installed with numpy-2
requirements = [r for r in requirements if not r.startswith("cirq-rigetti")]
dev_requirements = explode('dev_tools/requirements/deps/dev-tools.txt')
# filter out direct urls (https://github.com/pypa/pip/issues/6301)
dev_requirements = [r.strip() for r in dev_requirements if "https://" not in r]
setup(
name=name,
version=__version__,
url='http://github.com/quantumlib/cirq',
author='The Cirq Developers',
author_email='cirq-dev@googlegroups.com',
maintainer="Google Quantum AI open-source maintainers",
maintainer_email="quantum-oss-maintainers@google.com",
python_requires='>=3.11.0',
install_requires=requirements,
extras_require={'dev_env': dev_requirements},
license='Apache 2',
description=description,
long_description=long_description,
long_description_content_type='text/markdown',
packages=[],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering :: Quantum Computing",
"Topic :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed",
],
keywords=[
"algorithms",
"api",
"cirq",
"google",
"google quantum",
"nisq",
"python",
"quantum",
"quantum algorithms",
"quantum circuit",
"quantum circuit simulator",
"quantum computer simulator",
"quantum computing",
"quantum development kit",
"quantum information",
"quantum programming",
"quantum programming language",
"quantum simulation",
"sdk",
"simulation",
],
)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/mirrors/Cirq.git
git@gitee.com:mirrors/Cirq.git
mirrors
Cirq
Cirq
main

搜索帮助