uri-register 0.2.0

A high-performance PostgreSQL-backed URI dictionary service for assigning unique integer IDs to URIs
Documentation
[build-system]
requires = ["maturin>=1.0,<2.0"]
build-backend = "maturin"

[project]
name = "uri-register"
version = "0.2.0"
description = "A high-performance PostgreSQL-backed URI dictionary service for assigning unique integer IDs to URIs"
readme = "README.md"
requires-python = ">=3.10"
license = { text = "Apache-2.0" }
authors = [
    { name = "Ian Bailey", email = "ian@telicent.io" }
]
keywords = ["uri", "dictionary", "postgres", "string-interning", "id-mapping"]
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/uri-register"
Repository = "https://github.com/telicent-oss/uri-register"
Documentation = "https://github.com/telicent-oss/uri-register#readme"

[tool.maturin]
features = ["python"]
python-source = "python"
module-name = "uri_register._uri_register"

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

[tool.mypy]
python_version = "3.10"
files = ["python/uri_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"]