From ecd7d03a20e5f9cd9dc57835d053bcaa93b0cd60 Mon Sep 17 00:00:00 2001 From: Tiara Rodney Date: Sun, 3 Apr 2022 17:11:15 +0200 Subject: [PATCH] fix(init): again, distutils... is confusing non-script files should now be, hopefully, included in bdist and sdist chore: upgrade version --- MANIFEST.in | 2 ++ setup.cfg | 5 +---- 2 files changed, 3 insertions(+), 4 deletions(-) create mode 100644 MANIFEST.in diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 0000000..75d6607 --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1,2 @@ +recursive-include src/httpaste/schema *.json +recursive-incude src/httpaste/backend *.sql diff --git a/setup.cfg b/setup.cfg index d05333e..915d670 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = httpaste-victorykit -version = 1.0.8-alpha +version = 1.0.9-alpha author = Tiara Rodney author_email = t.rodney@victoryk.it description = a versatile HTTP pastebin @@ -38,6 +38,3 @@ console_scripts = [options.packages.find] where = src -[options.package_data] -openapi_schema = src/httpaste/schema/httpaste.openapi.json -sql_schema = *.sql