-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
executable file
·31 lines (28 loc) · 882 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
25
26
27
28
29
30
31
#!/usr/bin/env python
#
# Python Distutils Setup file for py-smbpasswd module. Build and
# install with:
#
# python setup.py install
#
# 2002-10-27 Barry Pederson <[email protected]>
import sys
from distutils.core import setup, Extension
setup(name = "smbpasswd",
description = "SMB Password Hash Generator - suitable for use with Samba",
version = "1.0.2",
classifiers=[
'Programming Language :: Python',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Topic :: Software Development :: Libraries :: Python Modules',
],
license = "GPL",
author = "Barry Pederson",
author_email = "[email protected]",
url = "https://github.com/barryp/py-smbpasswd",
ext_modules =
[
Extension("smbpasswd", ['md4.c', 'smbdes.c', 'smbpasswd.c'])
]
)
##### That's all folks ###########