-
Notifications
You must be signed in to change notification settings - Fork 13
/
setup.py
70 lines (52 loc) · 1.67 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
import os
from setuptools import setup
from libpunchq.__init__ import __version__
def _package_files(directory, suffix):
"""
Get all of the file paths in the directory specified by suffix.
:param directory:
:return:
"""
paths = []
for (path, directories, filenames) in os.walk(directory):
for filename in filenames:
if filename.endswith(suffix):
paths.append(os.path.join('..', path, filename))
return paths
# here - where we are.
here = os.path.abspath(os.path.dirname(__file__))
# read the package requirements for install_requires
with open(os.path.join(here, 'requirements.txt'), 'r') as f:
requirements = f.readlines()
# setup!
setup(
name='punch-q',
description='A small utility to play with IBM Websphere MQ',
long_description='punch-q is a small ultility used to play with IBM MQ',
license='GPL-3',
author='Leon Jacobs',
author_email='[email protected]',
url='https://github.com/sensepost/punch-q',
download_url='https://github.com/sensepost/punch-q/archive/' + __version__ + '.tar.gz',
keywords=['ibm', 'websphere', 'mq', 'security'],
version=__version__,
# include the wordlists!
package_data={
'': _package_files(os.path.join(here, 'libpunchq/wordlists'), '.txt')
},
python_requires='>=3.6',
packages=[
'libpunchq',
],
install_requires=requirements,
classifiers=[
'Operating System :: OS Independent',
'Natural Language :: English',
'Programming Language :: Python :: 3',
],
entry_points={
'console_scripts': [
'punch-q=libpunchq.cli:cli',
],
},
)