-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·21 lines (19 loc) · 926 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/usr/bin/python
from distutils.core import setup, Extension
setup (name = 'BULookup',
version = '0.2',
description = 'A trivial interface between python-phquery and various useradd tools.',
author = "Matthew Miller",
author_email = '[email protected]',
maintainer = "Matthew Miller",
maintainer_email = '[email protected]',
classifiers=['Development Status :: 4 - Beta',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: System :: Systems Administration :: Authentication/Directory'
],
py_modules = ['BULookup']
)