-
Notifications
You must be signed in to change notification settings - Fork 26
/
setup.py
24 lines (23 loc) · 943 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
from distutils.core import setup
setup(
name='Firmware Password Manager',
version='2.5',
url='https://github.com/univ-of-utah-marriott-library-apple/firmware_password_manager',
author='Todd McDaniel, Marriott Library Client Platform Services',
author_email='[email protected]',
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'
],
)