prefix-register 0.2.2

A PostgreSQL-backed namespace prefix registry for CURIE expansion and prefix management
Documentation
[build-system]
requires = ["maturin>=1.0,<2.0"]
build-backend = "maturin"

[project]
name = "prefix-register"
version = "0.2.2"
description = "A PostgreSQL-backed namespace prefix registry for CURIE expansion and prefix management"
readme = "README_PYPI.md"
requires-python = ">=3.10"
license = { text = "Apache-2.0" }
authors = [
    { name = "Ian Bailey", email = "ian@telicent.io" }
]
keywords = ["prefix", "curie", "namespace", "rdf", "semantic-web"]
classifiers = [
    "Development Status :: 4 - Beta",
    "Intended Audience :: Developers",
    "License :: OSI Approved :: Apache Software License",
    "Programming Language :: Python :: 3",
    "Programming Language :: Python :: 3.10",
    "Programming Language :: Python :: 3.11",
    "Programming Language :: Python :: 3.12",
    "Programming Language :: Python :: 3.13",
    "Programming Language :: Rust",
    "Topic :: Database",
    "Topic :: Software Development :: Libraries",
]
dependencies = []

[project.optional-dependencies]
dev = [
    "pytest>=7.0",
    "pytest-asyncio>=0.21",
    "mypy>=1.0",
    "ruff>=0.1.5",
]

[project.urls]
Homepage = "https://github.com/telicent-oss/prefix-register"
Repository = "https://github.com/telicent-oss/prefix-register"
Documentation = "https://github.com/telicent-oss/prefix-register#readme"

[tool.maturin]
features = ["python"]
python-source = "python"
module-name = "prefix_register._prefix_register"

[tool.pytest.ini_options]
testpaths = ["tests"]
asyncio_mode = "auto"

[tool.mypy]
python_version = "3.10"
files = ["python/prefix_register"]
no_implicit_optional = false
ignore_missing_imports = true

[tool.ruff]
line-length = 120
target-version = "py310"

[tool.ruff.lint]
select = ["E", "W", "F", "I", "C4", "B", "UP"]
ignore = ["C901"]