├── .gitattributes ├── BuildCrestronCommandReference.py ├── LICENSE.txt ├── README.md ├── donotexec.upc ├── make_dist.cmd └── requirements.txt /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGenusa/Crestron-Device-Documenter/HEAD/.gitattributes -------------------------------------------------------------------------------- /BuildCrestronCommandReference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGenusa/Crestron-Device-Documenter/HEAD/BuildCrestronCommandReference.py -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGenusa/Crestron-Device-Documenter/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGenusa/Crestron-Device-Documenter/HEAD/README.md -------------------------------------------------------------------------------- /donotexec.upc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenGenusa/Crestron-Device-Documenter/HEAD/donotexec.upc -------------------------------------------------------------------------------- /make_dist.cmd: -------------------------------------------------------------------------------- 1 | \python27\scripts\pyinstaller.exe -F BuildCrestronCommandReference.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | netifaces==0.10.6 2 | paramiko==2.2.1 3 | --------------------------------------------------------------------------------