From d7d57e126a060a521871d86a9e5617f3ed59e963 Mon Sep 17 00:00:00 2001 From: Felix Schwarz Date: Sat, 11 Jul 2026 11:18:08 +0200 Subject: [PATCH] flatten DotMap package into top-level module --- MANIFEST.in | 1 + dotmap/__init__.py => dotmap.py | 0 setup.cfg | 3 +-- dotmap/test.py => test_dotmap.py | 0 4 files changed, 2 insertions(+), 2 deletions(-) rename dotmap/__init__.py => dotmap.py (100%) rename dotmap/test.py => test_dotmap.py (100%) diff --git a/MANIFEST.in b/MANIFEST.in index 1372e01..4df9177 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1 +1,2 @@ include LICENSE.txt README.md +include test_dotmap.py diff --git a/dotmap/__init__.py b/dotmap.py similarity index 100% rename from dotmap/__init__.py rename to dotmap.py diff --git a/setup.cfg b/setup.cfg index cde84bb..1ecbf8d 100644 --- a/setup.cfg +++ b/setup.cfg @@ -22,5 +22,4 @@ keywords = dict, dot, map, order, ordered, ordereddict, access, dynamic [options] python_requires = >= 3.6 -packages = dotmap - +py_modules = dotmap \ No newline at end of file diff --git a/dotmap/test.py b/test_dotmap.py similarity index 100% rename from dotmap/test.py rename to test_dotmap.py