[build-system]
requires = ["maturin>=1.4,<2.0"]
build-backend = "maturin"
[project]
name = "stateset-embedded"
version = "0.7.10"
description = "Local-first embedded commerce library for Python"
readme = "README.md"
license = { text = "MIT OR Apache-2.0" }
authors = [
{ name = "StateSet", email = "support@stateset.com" }
]
keywords = ["commerce", "ecommerce", "embedded", "sqlite", "local-first"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"License :: OSI Approved :: Apache Software License",
"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 :: Software Development :: Libraries",
]
requires-python = ">=3.8"
[project.urls]
Homepage = "https://github.com/stateset/stateset-icommerce"
Repository = "https://github.com/stateset/stateset-icommerce"
Documentation = "https://docs.stateset.com"
[project.optional-dependencies]
dev = [
"pytest>=7.0",
"pytest-asyncio>=0.21",
"mypy>=1.0",
"ruff>=0.1",
]
[tool.maturin]
features = ["pyo3/extension-module"]
python-source = "python"
module-name = "stateset_embedded"
[tool.pytest.ini_options]
asyncio_mode = "auto"
[tool.ruff]
line-length = 100
target-version = "py38"
[tool.mypy]
python_version = "3.8"
strict = true