Test for datasette plugin registration, refs #4

This commit is contained in:
Simon Willison 2022-11-21 22:31:11 -08:00
commit 2c9af739c2
2 changed files with 33 additions and 1 deletions

View file

@ -32,6 +32,15 @@ setup(
"console_scripts": ["dclient = dclient.cli:cli"],
},
install_requires=["click", "httpx", "appdirs"],
extras_require={"test": ["pytest", "pytest-httpx", "cogapp", "pytest-mock"]},
extras_require={
"test": [
"pytest",
"pytest-asyncio",
"pytest-httpx",
"cogapp",
"pytest-mock",
"datasette",
]
},
python_requires=">=3.7",
)