From e2c1c1911e117245551a612499d02eacabbbe5d8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=AE=80=E5=BE=8B=E7=BA=AF?= Date: Sun, 25 Feb 2024 12:00:16 +0800 Subject: [PATCH] refactor: rename nivis-python to nivis --- .gitignore | 4 ++-- {nivis-python => nivis}/Grammar/Token | 0 {nivis-python => nivis}/Lib/IOStream/__init__.nivis | 0 {nivis-python => nivis}/Modules/asyncio/__init__.py | 0 {nivis-python => nivis}/__init__.py | 0 {nivis-python => nivis}/exception.py | 0 {nivis-python => nivis}/execution.py | 0 {nivis-python => nivis}/interpreter.py | 0 {nivis-python => nivis}/lexer.py | 0 {nivis-python => nivis}/mathmatics.py | 0 {nivis-python => nivis}/parsers.py | 0 {nivis-python => nivis}/type.py | 0 src/nivis_python/__init__.py | 0 13 files changed, 2 insertions(+), 2 deletions(-) rename {nivis-python => nivis}/Grammar/Token (100%) rename {nivis-python => nivis}/Lib/IOStream/__init__.nivis (100%) rename {nivis-python => nivis}/Modules/asyncio/__init__.py (100%) rename {nivis-python => nivis}/__init__.py (100%) rename {nivis-python => nivis}/exception.py (100%) rename {nivis-python => nivis}/execution.py (100%) rename {nivis-python => nivis}/interpreter.py (100%) rename {nivis-python => nivis}/lexer.py (100%) rename {nivis-python => nivis}/mathmatics.py (100%) rename {nivis-python => nivis}/parsers.py (100%) rename {nivis-python => nivis}/type.py (100%) delete mode 100644 src/nivis_python/__init__.py diff --git a/.gitignore b/.gitignore index eda3a42..75ace2b 100644 --- a/.gitignore +++ b/.gitignore @@ -20,10 +20,10 @@ docs/site/ .pdm-python .pdm-build/ .venv/ -dist/** +dist/ # vscode .vscode/ # ruff -.ruff_cache \ No newline at end of file +.ruff_cache/ \ No newline at end of file diff --git a/nivis-python/Grammar/Token b/nivis/Grammar/Token similarity index 100% rename from nivis-python/Grammar/Token rename to nivis/Grammar/Token diff --git a/nivis-python/Lib/IOStream/__init__.nivis b/nivis/Lib/IOStream/__init__.nivis similarity index 100% rename from nivis-python/Lib/IOStream/__init__.nivis rename to nivis/Lib/IOStream/__init__.nivis diff --git a/nivis-python/Modules/asyncio/__init__.py b/nivis/Modules/asyncio/__init__.py similarity index 100% rename from nivis-python/Modules/asyncio/__init__.py rename to nivis/Modules/asyncio/__init__.py diff --git a/nivis-python/__init__.py b/nivis/__init__.py similarity index 100% rename from nivis-python/__init__.py rename to nivis/__init__.py diff --git a/nivis-python/exception.py b/nivis/exception.py similarity index 100% rename from nivis-python/exception.py rename to nivis/exception.py diff --git a/nivis-python/execution.py b/nivis/execution.py similarity index 100% rename from nivis-python/execution.py rename to nivis/execution.py diff --git a/nivis-python/interpreter.py b/nivis/interpreter.py similarity index 100% rename from nivis-python/interpreter.py rename to nivis/interpreter.py diff --git a/nivis-python/lexer.py b/nivis/lexer.py similarity index 100% rename from nivis-python/lexer.py rename to nivis/lexer.py diff --git a/nivis-python/mathmatics.py b/nivis/mathmatics.py similarity index 100% rename from nivis-python/mathmatics.py rename to nivis/mathmatics.py diff --git a/nivis-python/parsers.py b/nivis/parsers.py similarity index 100% rename from nivis-python/parsers.py rename to nivis/parsers.py diff --git a/nivis-python/type.py b/nivis/type.py similarity index 100% rename from nivis-python/type.py rename to nivis/type.py diff --git a/src/nivis_python/__init__.py b/src/nivis_python/__init__.py deleted file mode 100644 index e69de29..0000000