- Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathsetup.py
More file actions
Latest commit
21 lines (20 loc) · 591 Bytes
/
Copy pathsetup.py
File metadata and controls
21 lines (20 loc) · 591 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
try:
fromsetuptoolsimportsetup
fromsetuptoolsimportfind_packages
packages=find_packages()
exceptImportError:
fromdistutils.coreimportsetup
importos
packages= [x.strip('./').replace('/','.') forxinos.popen('find -name "__init__.py" | xargs -n1 dirname').read().strip().split('\n')]
setup(
name='bdsig',
description='Library matcher for binaries given a database of library object files.',
version='0.0.1.1',
packages=packages,
install_requires=[
'networkx>=2',
'PyYAML',
'makeelf',
'clint'
]
)