├── .gitignore ├── README.md ├── faux ├── __init__.py └── faux.py ├── groups.json.sample └── setup.py /.gitignore: -------------------------------------------------------------------------------- 1 | groups.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midsum-salrux/faux-legacy/HEAD/README.md -------------------------------------------------------------------------------- /faux/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midsum-salrux/faux-legacy/HEAD/faux/__init__.py -------------------------------------------------------------------------------- /faux/faux.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midsum-salrux/faux-legacy/HEAD/faux/faux.py -------------------------------------------------------------------------------- /groups.json.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midsum-salrux/faux-legacy/HEAD/groups.json.sample -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midsum-salrux/faux-legacy/HEAD/setup.py --------------------------------------------------------------------------------