diff --git a/pyth/__init__.py b/pyth/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/big-pyth.bp b/pyth/big-pyth.bp similarity index 100% rename from big-pyth.bp rename to pyth/big-pyth.bp diff --git a/big-pyth.py b/pyth/big-pyth.py similarity index 100% rename from big-pyth.py rename to pyth/big-pyth.py diff --git a/data.py b/pyth/data.py similarity index 100% rename from data.py rename to pyth/data.py diff --git a/extra_parse.py b/pyth/extra_parse.py similarity index 100% rename from extra_parse.py rename to pyth/extra_parse.py diff --git a/lexer.py b/pyth/lexer.py similarity index 100% rename from lexer.py rename to pyth/lexer.py diff --git a/macros.py b/pyth/macros.py similarity index 100% rename from macros.py rename to pyth/macros.py diff --git a/packed-pyth.py b/pyth/packed-pyth.py similarity index 100% rename from packed-pyth.py rename to pyth/packed-pyth.py diff --git a/pyth.py b/pyth/pyth.py similarity index 100% rename from pyth.py rename to pyth/pyth.py diff --git a/test.py b/pyth/test.py similarity index 100% rename from test.py rename to pyth/test.py diff --git a/tree.py b/pyth/tree.py similarity index 100% rename from tree.py rename to pyth/tree.py diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..f830e12 --- /dev/null +++ b/setup.py @@ -0,0 +1,12 @@ +#!/usr/bin/env python3 + +from distutils.core import setup + +setup( + name='pyth', + version='4.4.1', + description='Pyth, an extremely concise language', + author='isaacg1', + url='https://github.com/isaacg1/pyth', + license='Expat', + packages=['pyth'])