├── .gitignore ├── LICENSE ├── README.txt ├── locallibs ├── __init__.py ├── fix.py ├── get.py ├── install.py └── relocatablizer.py ├── make_relocatable_python_framework.py ├── python_universal_tester.sh ├── requirements_python2_recommended.txt ├── requirements_python3_recommended.txt └── research_notes.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregneagle/relocatable-python/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregneagle/relocatable-python/HEAD/LICENSE -------------------------------------------------------------------------------- /README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregneagle/relocatable-python/HEAD/README.txt -------------------------------------------------------------------------------- /locallibs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /locallibs/fix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregneagle/relocatable-python/HEAD/locallibs/fix.py -------------------------------------------------------------------------------- /locallibs/get.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregneagle/relocatable-python/HEAD/locallibs/get.py -------------------------------------------------------------------------------- /locallibs/install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregneagle/relocatable-python/HEAD/locallibs/install.py -------------------------------------------------------------------------------- /locallibs/relocatablizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregneagle/relocatable-python/HEAD/locallibs/relocatablizer.py -------------------------------------------------------------------------------- /make_relocatable_python_framework.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregneagle/relocatable-python/HEAD/make_relocatable_python_framework.py -------------------------------------------------------------------------------- /python_universal_tester.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregneagle/relocatable-python/HEAD/python_universal_tester.sh -------------------------------------------------------------------------------- /requirements_python2_recommended.txt: -------------------------------------------------------------------------------- 1 | xattr==0.6.4 2 | pyobjc==5.3 -------------------------------------------------------------------------------- /requirements_python3_recommended.txt: -------------------------------------------------------------------------------- 1 | --no-binary :all: 2 | xattr 3 | cffi 4 | pyobjc 5 | six -------------------------------------------------------------------------------- /research_notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregneagle/relocatable-python/HEAD/research_notes.txt --------------------------------------------------------------------------------