-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
28 lines (26 loc) · 801 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
from setuptools import setup, find_packages
from audit_pretty import __version__
setup(
name="audit_pretty",
version=__version__,
author="fox.cpp",
author_email="fox.cpp@disroot.org",
description="Linux Auditing System logs pretty printer",
license="MIT",
keywords="utilty linux auditd",
url="https://github.com/foxcpp/audit_pretty",
packages=find_packages(),
entry_points={
'console_scripts': [
'audit-pretty = audit_pretty.__main__:entry'
]
},
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: System Administrators",
"Topic :: Utilities",
"Topic :: Security",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.5"
],
)