view pyproject.toml @ 130:d195a5f50137

rename isEmpty to match js
author drewp@bigasterisk.com
date Mon, 29 May 2023 16:14:17 -0700
parents 6443cb265a2f
children
line wrap: on
line source

[project]
name = "rdfdb"
version = "0.24.0"
description = ""
authors = [{ name = "Drew Perttula", email = "drewp@bigasterisk.com" }]
license = "MIT"
dependencies = [
    'rdflib',
    'autobahn>=23.1.2',
    "prometheus-client>=0.13.1",
    "starlette-exporter>=0.12.0",
    "asyncinotify>=4.0.2",
    "aiohttp>=3.8.1",
]
requires-python = ">=3.10"

[project.urls]
Homepage = ""

# url='https://projects.bigasterisk.com/rdfdb/rdfdb-0.21.0.tar.gz',
[project.optional-dependencies]

[tool.pdm]

[tool.pdm.dev-dependencies]
dev = [
    "flake8>=4.0.1",
    "yapf>=0.32.0",
    "pytest>=7.1.1",
    "pytest-watcher>=0.2.3",
    "mock",
    "pytest-asyncio>=0.21.0",
    "pydeps>=1.10.18",
    "uvicorn>=0.22.0",
]

[build-system]
requires = ["pdm-pep517>=0.12.0"]
build-backend = "pdm.pep517.api"

[tool.pytest.ini_options]
filterwarnings = [
    # The below warning is a consequence of how pytest doctest detects mocks and how DefinedNamespace behaves when an undefined attribute is being accessed.
    'ignore:Code. pytest_mock_example_attribute_that_shouldnt_exist is not defined in namespace .*:UserWarning',
    # The below warning is a consequence of how pytest detects fixtures and how DefinedNamespace behaves when an undefined attribute is being accessed.
    'ignore:Code. _pytestfixturefunction is not defined in namespace .*:UserWarning',
]
asyncio_mode = "strict"
log_cli = 1
log_cli_level = "INFO"
addopts = "--tb=short"