mirror of
https://github.com/jopohl/urh.git
synced 2026-03-05 16:04:01 +01:00
108 lines
3.6 KiB
Python
108 lines
3.6 KiB
Python
import os
|
|
import sys
|
|
from distutils.core import setup, Extension
|
|
from distutils import ccompiler
|
|
import src.urh.version as version
|
|
|
|
if sys.platform == "win32":
|
|
OPEN_MP_FLAG = "-openmp"
|
|
else:
|
|
OPEN_MP_FLAG = "-fopenmp"
|
|
|
|
DEBUG = True
|
|
COMPILER_DIRECTIVES = {'language_level': 3,
|
|
'cdivision': True,
|
|
'wraparound': False,
|
|
'boundscheck': False,
|
|
'initializedcheck': False,
|
|
}
|
|
|
|
UI_SUBDIRS = ("actions", "delegates", "views")
|
|
PLUGINS = ("AmbleAnalyzer", "BlockBreak", "ZeroHide")
|
|
URH_DIR = "urh"
|
|
|
|
|
|
def get_packages():
|
|
packages = [URH_DIR]
|
|
separator = os.path.normpath("/")
|
|
for dirpath, dirnames, filenames in os.walk(os.path.join("./src/", URH_DIR)):
|
|
package_path = os.path.relpath(dirpath, os.path.join("./src/", URH_DIR)).replace(separator, ".")
|
|
if len(package_path) > 1:
|
|
packages.append(URH_DIR + "." + package_path)
|
|
|
|
return packages
|
|
|
|
|
|
def get_package_data():
|
|
package_data = {}
|
|
for plugin in PLUGINS:
|
|
package_data["urh.plugins." + plugin] = ['settings.ui', "descr.txt"]
|
|
|
|
return package_data
|
|
|
|
|
|
def get_ext_modules():
|
|
import numpy
|
|
ext = ".cpp"
|
|
|
|
filenames = [os.path.splitext(f)[0] for f in os.listdir("src/urh/cythonext") if f.endswith(ext)]
|
|
|
|
extensions = [Extension("urh.cythonext." + f, ["src/urh/cythonext/" + f + ext],
|
|
include_dirs=[numpy.get_include()],
|
|
extra_compile_args=["-static", "-static-libgcc", OPEN_MP_FLAG],
|
|
extra_link_args=[OPEN_MP_FLAG],
|
|
language="c++") for f in filenames]
|
|
|
|
return extensions
|
|
|
|
|
|
def get_device_modules():
|
|
compiler = ccompiler.new_compiler()
|
|
|
|
extensions = []
|
|
devices = {
|
|
"hackrf": {"lib": "hackrf", "test_function": "hackrf_init"}
|
|
}
|
|
|
|
for dev_name, params in devices.items():
|
|
if compiler.has_function(params["test_function"], libraries=(params["lib"],)):
|
|
print("\n\n\nFound {0}.h - will compile with native {1} support\n\n\n".format(params["lib"], dev_name))
|
|
e = Extension("urh.dev.native.lib." + dev_name, ["src/urh/dev/native/lib/{0}.cpp".format(dev_name)],
|
|
extra_compile_args=["-static", "-static-libgcc", OPEN_MP_FLAG],
|
|
extra_link_args=[OPEN_MP_FLAG], language="c++",
|
|
libraries=[params["lib"]])
|
|
extensions.append(e)
|
|
else:
|
|
print("\n\n\nCould not find {0}.h - skipping native support for {1}\n\n\n".format(params["lib"], dev_name))
|
|
try:
|
|
os.remove("a.out") # Temp file for checking
|
|
except OSError:
|
|
pass
|
|
return extensions
|
|
|
|
|
|
# import generate_ui
|
|
# generate_ui.gen # pyuic5 is not included in all python3-pyqt5 packages (e.g. ubuntu), therefore do not regenerate UI here
|
|
|
|
setup(
|
|
name="urh",
|
|
version=version.VERSION,
|
|
description="Universal Radio Hacker: Hacking wireless protocols made easy",
|
|
author="Johannes Pohl",
|
|
author_email="Johannes.Pohl90@gmail.com",
|
|
package_dir={"": "src"},
|
|
package_data=get_package_data(),
|
|
url="https://github.com/jopohl/urh",
|
|
license="Apache License 2.0",
|
|
download_url="https://github.com/jopohl/urh/tarball/v" + str(version.VERSION),
|
|
install_requires=['numpy'],
|
|
setup_requires=['numpy'],
|
|
packages=get_packages(),
|
|
ext_modules=get_ext_modules() + get_device_modules(),
|
|
# data_files=[("data", "")],
|
|
scripts=["bin/urh"]
|
|
)
|
|
|
|
# python setup.py sdist --> Source distribution
|
|
# python setup.py bdist --> Vorkompiliertes Package https://docs.python.org/3/distutils/builtdist.html
|