From e752b92bab5fcfec38412f32e80e674f9053e907 Mon Sep 17 00:00:00 2001 From: AJ Slater Date: Thu, 21 Dec 2023 13:04:20 -0800 Subject: [PATCH] fix pyproject to build --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index f225fbb..8a9d2ce 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,7 +3,7 @@ requires = ["poetry-core>=1.0.0"] build-backend = "poetry.core.masonry.api" [tool.poetry] -name = "" +name = "comicfn2dict" version = "0.1.0" description = "Parse common comic filenames and return a dict of metadata attributes. Includes a cli." license = "GPL-3.0-only" @@ -20,7 +20,7 @@ classifiers = [ "Operating System :: OS Independent", "Programming Language :: Python :: 3 :: Only", ] -packages = [{ include = "" }, { include = "tests", format = "sdist" }] +packages = [{ include = "comicfn2dict" }, { include = "tests", format = "sdist" }] exclude = ["*/**/*~"] include = []