diff --git a/README.md b/README.md index e69de29..3b21dcf 100644 --- a/README.md +++ b/README.md @@ -0,0 +1,3 @@ +PyDBG is a python debugging library and is used in the Sulley Fuzzing Framework (https://github.com/OpenRCE/sulley). + +Written by Pedram Amini diff --git a/__init__.py b/pydbg/__init__.py similarity index 100% rename from __init__.py rename to pydbg/__init__.py diff --git a/breakpoint.py b/pydbg/breakpoint.py similarity index 100% rename from breakpoint.py rename to pydbg/breakpoint.py diff --git a/defines.py b/pydbg/defines.py similarity index 100% rename from defines.py rename to pydbg/defines.py diff --git a/hardware_breakpoint.py b/pydbg/hardware_breakpoint.py similarity index 100% rename from hardware_breakpoint.py rename to pydbg/hardware_breakpoint.py diff --git a/memory_breakpoint.py b/pydbg/memory_breakpoint.py similarity index 100% rename from memory_breakpoint.py rename to pydbg/memory_breakpoint.py diff --git a/memory_snapshot_block.py b/pydbg/memory_snapshot_block.py similarity index 100% rename from memory_snapshot_block.py rename to pydbg/memory_snapshot_block.py diff --git a/memory_snapshot_context.py b/pydbg/memory_snapshot_context.py similarity index 100% rename from memory_snapshot_context.py rename to pydbg/memory_snapshot_context.py diff --git a/my_ctypes.py b/pydbg/my_ctypes.py similarity index 100% rename from my_ctypes.py rename to pydbg/my_ctypes.py diff --git a/pdx.py b/pydbg/pdx.py similarity index 100% rename from pdx.py rename to pydbg/pdx.py diff --git a/pydasm.pyd b/pydbg/pydasm.pyd similarity index 100% rename from pydasm.pyd rename to pydbg/pydasm.pyd diff --git a/pydbg.py b/pydbg/pydbg.py similarity index 100% rename from pydbg.py rename to pydbg/pydbg.py diff --git a/pydbg_client.py b/pydbg/pydbg_client.py similarity index 100% rename from pydbg_client.py rename to pydbg/pydbg_client.py diff --git a/system_dll.py b/pydbg/system_dll.py similarity index 100% rename from system_dll.py rename to pydbg/system_dll.py diff --git a/windows_h.py b/pydbg/windows_h.py similarity index 100% rename from windows_h.py rename to pydbg/windows_h.py diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..e03ee9b --- /dev/null +++ b/setup.py @@ -0,0 +1,9 @@ +from distutils.core import setup + +setup(name = "pydbg", + description = 'Python Debugging Library', + author = 'Pedram Amini', + author_email = 'pedram.amini@gmail.com', + package_dir = {'':"."}, + packages = ["pydbg"], + )