├── .gitignore ├── CHANGELOG.rst ├── COPYING ├── README.rst ├── openevse.py ├── setup.py └── upload_pypi.sh /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | build/ 3 | dist/ 4 | *.egg-info/ 5 | -------------------------------------------------------------------------------- /CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiramiseb/python-openevse/HEAD/CHANGELOG.rst -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiramiseb/python-openevse/HEAD/COPYING -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiramiseb/python-openevse/HEAD/README.rst -------------------------------------------------------------------------------- /openevse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiramiseb/python-openevse/HEAD/openevse.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiramiseb/python-openevse/HEAD/setup.py -------------------------------------------------------------------------------- /upload_pypi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiramiseb/python-openevse/HEAD/upload_pypi.sh --------------------------------------------------------------------------------