forked from IntegralDefense/json-inspect
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (28 loc) · 983 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
32
33
import setuptools
__version__ = "0.0.1"
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="json_inspect",
version=__version__,
author="Kyle Piper",
author_email="kylepiper29@gmail.com",
description="Inspects JSON logs for SIEM ingestion.",
license="Apache-2.0",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/IntegralDefense/json-inspect",
packages=setuptools.find_packages(),
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Information Security",
"Intended Audience :: Information Technology",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
],
keywords="logs",
)
# TO BE CONTINUED...