From 38ec27a3f4458332e6cc95984abc2c00da1c1621 Mon Sep 17 00:00:00 2001 From: kj7rrv Date: Sun, 14 Nov 2021 18:57:27 -0800 Subject: [PATCH] Rearrange files --- {gptc => src/gptc}/__init__.py | 0 {gptc => src/gptc}/__main__.py | 0 {gptc => src/gptc}/classifier.py | 0 {gptc => src/gptc}/compiler.py | 0 {gptc => src/gptc}/exceptions.py | 0 {gptc => src/gptc}/tokenizer.py | 0 pack.py => utils/pack.py | 0 7 files changed, 0 insertions(+), 0 deletions(-) rename {gptc => src/gptc}/__init__.py (100%) rename {gptc => src/gptc}/__main__.py (100%) rename {gptc => src/gptc}/classifier.py (100%) rename {gptc => src/gptc}/compiler.py (100%) rename {gptc => src/gptc}/exceptions.py (100%) rename {gptc => src/gptc}/tokenizer.py (100%) rename pack.py => utils/pack.py (100%) diff --git a/gptc/__init__.py b/src/gptc/__init__.py similarity index 100% rename from gptc/__init__.py rename to src/gptc/__init__.py diff --git a/gptc/__main__.py b/src/gptc/__main__.py similarity index 100% rename from gptc/__main__.py rename to src/gptc/__main__.py diff --git a/gptc/classifier.py b/src/gptc/classifier.py similarity index 100% rename from gptc/classifier.py rename to src/gptc/classifier.py diff --git a/gptc/compiler.py b/src/gptc/compiler.py similarity index 100% rename from gptc/compiler.py rename to src/gptc/compiler.py diff --git a/gptc/exceptions.py b/src/gptc/exceptions.py similarity index 100% rename from gptc/exceptions.py rename to src/gptc/exceptions.py diff --git a/gptc/tokenizer.py b/src/gptc/tokenizer.py similarity index 100% rename from gptc/tokenizer.py rename to src/gptc/tokenizer.py diff --git a/pack.py b/utils/pack.py similarity index 100% rename from pack.py rename to utils/pack.py