-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (19 loc) · 680 Bytes
/
setup.py
File metadata and controls
22 lines (19 loc) · 680 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import setup, find_packages
with open("README.md", "r") as f:
long_description = f.read()
setup(
name="InsightIDR4Py",
version="0.3.1",
description="A Python client allowing simplified interaction with Rapid7's InsightIDR REST API.",
long_description=long_description,
long_description_content_type="text/markdown",
license="MIT",
author="Micah Babinski",
author_email="m.babinski.88@gmail.com",
py_modules=["InsightIDR4Py"],
url="https://github.com/mbabinski/InsightIDR4Py",
keywords="Rapid7, InsightIDR, SIEM, Logsearch, Investigations, Threats, Alerts",
install_requires=[
"requests",
],
)