From 4543cecb6c4603bd3be6a1511026d80d0c40e69a Mon Sep 17 00:00:00 2001 From: Ian Griffin Date: Wed, 12 Nov 2025 20:27:45 +0800 Subject: [PATCH] simplified project structure --- print_md/__init__.py => print_md.py | 0 setup_bak.py | 10 ---------- 2 files changed, 10 deletions(-) rename print_md/__init__.py => print_md.py (100%) delete mode 100644 setup_bak.py diff --git a/print_md/__init__.py b/print_md.py similarity index 100% rename from print_md/__init__.py rename to print_md.py diff --git a/setup_bak.py b/setup_bak.py deleted file mode 100644 index 3329de2..0000000 --- a/setup_bak.py +++ /dev/null @@ -1,10 +0,0 @@ -from setuptools import setup, find_packages - -setup( - name='term_color_md', - version='0.1', - packages=find_packages(), - install_requires=[ - 'termcolor>=3.1.0', - ] -)