forked from clio-project/python-binaryaudit
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
Latest commit
18 lines (15 loc) · 423 Bytes
/
Copy pathsetup.py
File metadata and controls
18 lines (15 loc) · 423 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
fromsetuptoolsimportsetup
setup(name="binaryaudit",
version="0.0.2",
description="ELF binary audit",
url="",
author="Anatol Belski",
author_email="anbelski@linux.microsoft.com",
license="MIT",
packages= ["binaryaudit"],
install_requires= [
],
scripts= [
"bin/ba_is_elf",
],
zip_safe=False)