From 9528280941ef165f13fb3f3ef6bb5899401cbdf8 Mon Sep 17 00:00:00 2001 From: Chris Holdgraf Date: Fri, 30 Dec 2022 03:14:57 +0100 Subject: [PATCH] Package data --- noxfile.py | 2 +- setup.py | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/noxfile.py b/noxfile.py index 68328c6..61bdf84 100644 --- a/noxfile.py +++ b/noxfile.py @@ -32,5 +32,5 @@ def docs(session): @nox.session def test(session): """Run the test suite.""" - session.install("-e", ".") + session.install(".") session.run(*(["pytest"] + session.posargs)) diff --git a/setup.py b/setup.py index 42d5cef..4743595 100644 --- a/setup.py +++ b/setup.py @@ -16,6 +16,7 @@ license="LICENSE.md", install_requires=["sphinx>=4.0", "matplotlib"], packages=["sphinxext/opengraph"], + package_data={"sphinxext.opengraph": ["sphinxext/opengraph/_static/*"]}, classifiers=[ "Development Status :: 5 - Production/Stable", "Environment :: Plugins",