-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Package update. Woohoo! Nothing changed in code though.
- Loading branch information
Showing
3 changed files
with
29 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
include LICENSE.md | ||
include README.md | ||
include MANIFEST.in | ||
recursive-exclude * *.py[co] | ||
recursive-exclude build * |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,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' | ||
], | ||
) |