diff --git a/setup.py b/setup.py index e69de29..efc9fbf 100644 --- a/setup.py +++ b/setup.py @@ -0,0 +1,11 @@ +import setuptools + + +setuptools.setup( + name="pyadb", + version="1.0", + author="Raphael Roberts", + author_email="raphael.roberts48@gmail.com", + description="Python ADB wrapper", + packages=setuptools.find_packages(), +)