- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
Latest commit
executable file
·26 lines (24 loc) · 1.16 KB
/
Copy pathsetup.py
File metadata and controls
executable file
·26 lines (24 loc) · 1.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#!/usr/bin/python
fromdistutils.coreimportsetup, Extension
setup (name='phquery',
version='0.4',
description='A simple module for getting info from a PH/QI server.',
author="John N. Laliberte",
author_email='allanonjl@gentoo.org',
maintainer="Matthew Miller",
maintainer_email='mattdm@mattdm.org',
url='http://www.mattdm.org/misc/python-ph/',
classifiers=['Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Communications :: Email :: Address Book',
'Topic :: Internet',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: System :: Networking',
'Topic :: System :: Systems Administration :: Authentication/Directory'
],
py_modules= ['phquery']
)