Skip to content

Commit

Permalink
Brought up to date with group style guide.
Browse files Browse the repository at this point in the history
No changes to code, added install/unistall packages.
  • Loading branch information
lazymutt committed Nov 18, 2015
1 parent b5e6cf3 commit f7c8b85
Show file tree
Hide file tree
Showing 4 changed files with 91 additions and 3 deletions.
61 changes: 58 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,61 @@
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]

README2.md
# C extensions
*.so

firmware_password_manager.sh
# Distribution / packaging
.Python
env/
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
*.egg-info/
.installed.cfg
*.egg

keyfile.txt
# 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/

# Custom
original
original/*
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ A Python script to help Macintosh administrators manage the firmware passwords o
* [firmwarepasswd](#firmwarepasswd)
* [Error messages](#common-error-messages)
* [Notes](#notes)
* [Update History](#update-history)

## Contact

Expand Down Expand Up @@ -188,3 +189,11 @@ If you have an earlier machine, it's much easier:
6. Restart and the firmware password should be removed.

Thank you to macmule for <http://macmule.com/2014/05/11/ea-check-efi-password-state/>, which helped me get things working in version 1.

## Update History

Date | Version | Notes
-------|-----------|-------
2015.11.05 | 2.0.0 | Python rewrite, Docs rewritten
2015.02.25 | 1.0.1 | Use firmwarepasswd on 10.10
2014.08.20 | 1.0.0 | Initial version.
Binary file added pkg/Firmware Password Manager [2.0.0].dmg
Binary file not shown.
24 changes: 24 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
from distutils.core import setup

setup(
name='Firmware Password Manager',
version='2.0.0',
url='https://github.com/univ-of-utah-marriott-library-apple/firmware_password_manager',
author='Todd McDaniel, Marriott Library IT Services',
author_email='mlib-its-mac-github@lists.utah.edu',
description=('A Python script to help Macintosh administrators manage the firmware ',
'passwords of their computers.'),
license='MIT',
scripts=['firmware_password_manager.py'],
classifiers=[
'Development Status :: 5 - Stable',
'Environment :: Console',
'Environment :: MacOS X',
'Intended Audience :: Information Technology',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: MacOS :: MacOS X',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7'
],
)

0 comments on commit f7c8b85

Please sign in to comment.