-
Notifications
You must be signed in to change notification settings - Fork 37
/
setup.py
executable file
·34 lines (30 loc) · 1.34 KB
/
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
34
#!/usr/bin/env python3
#
# Copyright (c) 2019-present, Trail of Bits, Inc.
# All rights reserved.
#
# This source code is licensed in accordance with the terms specified in
# the LICENSE file found in the root directory of this source tree.
#
import setuptools
import sys
import os
os.chdir(os.path.join(os.path.dirname(__file__), "python"))
setuptools.setup(
name="anvill",
version="1.0.2",
description="Specification-based decompilation library",
author="Peter Goodman",
author_email="[email protected]",
url="https://github.com/lifting-bits/anvill",
license="AGPL 3",
data_files=[('anvill', ['anvill/logging.ini'])],
py_modules=[
"anvill.__init__", "anvill.__main__", "anvill.arch", "anvill.binja.__init__",
"anvill.binja.bnfunction", "anvill.binja.bninstruction", "anvill.binja.bnprogram",
"anvill.binja.bnvariable", "anvill.binja.callingconvention", "anvill.binja.typecache",
"anvill.binja.xreftype", "anvill.binja.table", "anvill.call", "anvill.exc", "anvill.function",
"anvill.ida.__init__", "anvill.ida.idafunction", "anvill.ida.idaprogram",
"anvill.ida.idavariable", "anvill.ida.utils", "anvill.imageparser.__init__",
"anvill.imageparser.elfparser", "anvill.loc", "anvill.mem", "anvill.os", "anvill.program",
"anvill.type", "anvill.var", "anvill.util"])