From b5faab8870e6264f292a8905d80f1e5543d8f2cb Mon Sep 17 00:00:00 2001 From: Ian Fijolek Date: Mon, 7 Aug 2017 10:20:22 -0700 Subject: [PATCH] Initial commit --- .gitignore | 75 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ README.md | 19 ++++++++++++++ 2 files changed, 94 insertions(+) create mode 100644 .gitignore create mode 100644 README.md diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..70a5aa6 --- /dev/null +++ b/.gitignore @@ -0,0 +1,75 @@ +# Byte-compiled / optimized / DLL files +__pycache__/ +*.py[cod] +*$py.class + +# C extensions +*.so + +# Distribution / packaging +.Python +env/ +build/ +develop-eggs/ +dist/ +downloads/ +eggs/ +.eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +*.egg-info/ +.installed.cfg +*.egg +*.dist-info/ +.pip-cache + +# 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/ + +# tags +tags + +# virtualenv +virtualenv_run/ + +# Atom Sync Config +.sync-config.cson + +# OSX junk +.DS_Store +src/vendor/ +src/libusb-1.0.dylib +*.pyc diff --git a/README.md b/README.md new file mode 100644 index 0000000..ee8167e --- /dev/null +++ b/README.md @@ -0,0 +1,19 @@ +Alfred Yubico Auth +================== + +An Alfred Workflow for auto filling authentication codes stored on your Yubikey. + +Notes +----- + +This is definitely a work in progress. There are a lot of rough edges yet to be polished, but here it goes. + +* There is no way to input your key password through the UI yet. Do that with `make set-password` and then it should work fine. +* Does not bundle dylibs for you. Hanve't quite figured out what needs to be done to make this portable +* Requires MacPorts to install dependencies +* Error handling is terrible right now. If things don't work, check the debug log in Alfred + +Credits +------- + +Uses the amazing [deanishe/alfred-workflow](https://github.com/deanishe/alfred-workflow) package