mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-04 10:19:23 +02:00
Renaming Pyhidra to PyGhidra
This commit is contained in:
parent
92d0f1dacf
commit
5b81139197
78 changed files with 370 additions and 629 deletions
14
Ghidra/Features/PyGhidra/src/main/py/setup.py
Normal file
14
Ghidra/Features/PyGhidra/src/main/py/setup.py
Normal file
|
@ -0,0 +1,14 @@
|
|||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
import sys
|
||||
from setuptools import setup
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
# This is necessary so that we can build the sdist using pip wheel.
|
||||
# Unfortunately we have to have this work without having setuptools
|
||||
# which pip will install in an isolated environment from the
|
||||
# dependencies directory.
|
||||
if "bdist_wheel" in sys.argv and "sdist" not in sys.argv:
|
||||
sys.argv.append("sdist")
|
||||
setup()
|
Loading…
Add table
Add a link
Reference in a new issue