-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
24 lines (23 loc) · 913 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
import sudoers_manager
setup(
name='Sudoers Manager',
version=sudoers_manager.attributes['version'],
url='https://github.com/univ-of-utah-marriott-library-apple/sudoers_manager',
author='Pierce Darragh, Marriott Library IT Services',
author_email='[email protected]',
description=('A standalone Python script to help administrators manage their sudoers file.'),
license='MIT',
scripts=['sudoers_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'
],
)