quantrs2-core 0.1.0-beta.3

Core types and traits for the QuantRS2 quantum computing framework
Documentation
[build-system]
requires = ["maturin>=1.0,<2.0"]
build-backend = "maturin"

[project]
name = "quantrs2-core-extension"
version = "0.1.0b2"
description = "Python bindings for QuantRS2-Core quantum computing framework"
authors = [
    {name = "QuantRS2 Contributors (Team KitaSan)", email = "info@kitasan.io"},
]
readme = "README.md"
license = {text = "MIT OR Apache-2.0"}
requires-python = ">=3.8"
classifiers = [
    "Development Status :: 4 - Beta",
    "Intended Audience :: Science/Research",
    "License :: OSI Approved :: MIT License",
    "License :: OSI Approved :: Apache Software License",
    "Operating System :: OS Independent",
    "Programming Language :: Python :: 3",
    "Programming Language :: Python :: 3.8",
    "Programming Language :: Python :: 3.9",
    "Programming Language :: Python :: 3.10",
    "Programming Language :: Python :: 3.11",
    "Programming Language :: Python :: 3.12",
    "Programming Language :: Rust",
    "Topic :: Scientific/Engineering :: Physics",
    "Topic :: Scientific/Engineering :: Chemistry",
    "Topic :: Software Development :: Libraries :: Python Modules",
]
keywords = ["quantum", "computing", "quantum-gates", "quantum-circuits", "physics", "simulation"]
dependencies = [
    "numpy>=1.20.0",
]

[project.optional-dependencies]
test = [
    "pytest>=6.0",
    "pytest-benchmark",
]
jupyter = [
    "jupyter",
    "matplotlib",
    "seaborn",
]
dev = [
    "maturin>=1.0",
    "black",
    "isort",
    "pytest",
]

[project.urls]
Homepage = "https://github.com/cool-japan/quantrs"
Repository = "https://github.com/cool-japan/quantrs"
Documentation = "https://pypi.org/project/quantrs2-core/"
Issues = "https://github.com/cool-japan/quantrs/issues"

[tool.maturin]
features = ["python"]
module-name = "quantrs2.core"
python-source = "python"
strip = true
manifest-path = "Cargo.toml"

[tool.black]
line-length = 88
target-version = ['py38']

[tool.isort]
profile = "black"
multi_line_output = 3