From 1bf0df1b2be9c20c58a74f71d9a7963d76b6617f Mon Sep 17 00:00:00 2001 From: Kevin Wang Date: Sat, 28 Dec 2024 16:11:32 -0600 Subject: [PATCH] [Fix] PEP625 compliance This fix insures that future PyPI releases' filenames are PEP 625 compliant with normalized file name. --- meta.yaml | 2 +- setup.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/meta.yaml b/meta.yaml index db229aa..19a586e 100644 --- a/meta.yaml +++ b/meta.yaml @@ -1,4 +1,4 @@ -{% set name = "PyCytoData" %} +{% set name = "pycytodata" %} {% set version = "0.1.3" %} package: diff --git a/setup.py b/setup.py index 1a6f9b1..840a3b5 100644 --- a/setup.py +++ b/setup.py @@ -24,8 +24,8 @@ def finalize_options(self): def run(self): shutil.rmtree("dist/") - wheel_file = "PyCytoData-{}-py3-none-any.whl".format(VERSION) - tar_file = "PyCytoData-{}.tar.gz".format(VERSION) + wheel_file = "pycytodata-{}-py3-none-any.whl".format(VERSION) + tar_file = "pycytodata-{}.tar.gz".format(VERSION) os.system("{} setup.py sdist bdist_wheel".format(sys.executable)) os.system("twine upload dist/{} dist/{}".format(wheel_file, tar_file))