Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
64 changes: 61 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
# 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 os
import re
import sys
Expand Down Expand Up @@ -120,9 +134,11 @@ def build_extension(self, ext):
name="qsimcirq",
version=__version__,
url="https://github.com/quantumlib/qsim",
author="Vamsi Krishna Devabathini",
author_email="devabathini92@gmail.com",
python_requires=">=3.7.0",
author="The qsim/qsimh Developers",
author_email="qsim-qsimh-dev@googlegroups.com",
maintainer="Google Quantum AI open-source maintainers",
maintainer_email="quantum-oss-maintainers@google.com",
python_requires=">=3.10.0",
install_requires=requirements,
setup_requires=["packaging"],
extras_require={
Expand All @@ -146,4 +162,46 @@ def build_extension(self, ext):
zip_safe=False,
packages=["qsimcirq"],
package_data={"qsimcirq": ["py.typed"]},
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: GPU :: NVIDIA CUDA",
"Intended Audience :: Developers",
"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 :: C++",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"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",
"application programming interface",
"cirq",
"google quantum",
"google",
"nisq",
"python",
"quantum algorithm development",
"quantum circuit simulator",
"quantum computer simulator",
"quantum computing",
"quantum computing research",
"quantum programming",
"quantum simulation",
"quantum",
"schrödinger-feynman simulation",
"sdk",
"simulation",
"state vector simulator",
"software development kit",
],
)
Loading