-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (22 loc) · 737 Bytes
/
setup.py
File metadata and controls
23 lines (22 loc) · 737 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
try:
from setuptools import setup
from setuptools import find_packages
packages = find_packages()
except ImportError:
from distutils.core import setup
import os
packages = [x.strip('./').replace('/','.') for x in os.popen('find -name "__init__.py" | xargs -n1 dirname').read().strip().split('\n')]
setup(
name='cle',
description='CLE Loads Everything (at least, may binary formats!) and provides a Pythonic interface to analyze what they are and what they would look like in memory.',
version='7.7.9.8.post1',
packages=packages,
install_requires=[
'pyelftools>=0.24',
'cffi',
'idalink',
'archinfo>=7.7.9.8',
'pyvex>=7.7.9.8',
'pefile',
]
)