-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
27 lines (24 loc) · 1017 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
import pathlib
from setuptools import setup, find_packages
import os
from cottontail import __version__
here = pathlib.Path(__file__).parent
long_description = (here / "README.md").read_text()
description = 'Cottontail - A set of scripts to capture RabbitMQ messages.'
setup(
name = 'cottontail-offensive',
version = __version__,
long_description_content_type = "text/markdown",
description = description,
long_description = long_description,
author = 'Quentin Kaiser',
author_email = '[email protected]',
url = 'http://www.github.com/qkaiser/cottontail',
packages = find_packages(),
include_package_data = False,
scripts = [ 'bin/cottontail' ],
license = 'BSD-3',
zip_safe = False,
install_requires = [ 'coloredlogs', 'verboselogs', 'pika',\
'requests', 'urllib3' ]
)