diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..ba74660 --- /dev/null +++ b/.gitignore @@ -0,0 +1,57 @@ +# Byte-compiled / optimized / DLL files +__pycache__/ +*.py[cod] + +# C extensions +*.so + +# Distribution / packaging +.Python +env/ +build/ +develop-eggs/ +dist/ +downloads/ +eggs/ +.eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +*.egg-info/ +.installed.cfg +*.egg + +# PyInstaller +# Usually these files are written by a python script from a template +# before PyInstaller builds the exe, so as to inject date/other infos into it. +*.manifest +*.spec + +# Installer logs +pip-log.txt +pip-delete-this-directory.txt + +# Unit test / coverage reports +htmlcov/ +.tox/ +.coverage +.coverage.* +.cache +nosetests.xml +coverage.xml +*,cover + +# Translations +*.mo +*.pot + +# Django stuff: +*.log + +# Sphinx documentation +docs/_build/ + +# PyBuilder +target/ diff --git a/autoremote/__init__.py b/autoremote/__init__.py new file mode 100644 index 0000000..9a4552d --- /dev/null +++ b/autoremote/__init__.py @@ -0,0 +1 @@ +import autoremote \ No newline at end of file diff --git a/autoremote.py b/autoremote/autoremote.py similarity index 100% rename from autoremote.py rename to autoremote/autoremote.py diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..8e0b6f8 --- /dev/null +++ b/setup.py @@ -0,0 +1,14 @@ +from setuptools import setup + +setup( + name='autormeote', + version='0.1', + license='MIT', + author='Dan Yeakley', + author_email='ddyeakley@gmail.com', + url='https://github.com/ddyeakley/autoremote', + long_description="README.txt", + packages=['autoremote'], + include_package_data=False, + description="Simple Python tool to use autoremote to send data to a phone running tasker", +) \ No newline at end of file