tool_directory.py 2.0 KB

1234567891011121314151617181920212223
  1. #! /usr/bin/env python
  2. # -*- coding: UTF-8 -*-
  3. #——————————————————————————————————————————————————————————————————————————————————————————————————————————————————————*
  4. import os, urllib, subprocess, sys
  5. #——————————————————————————————————————————————————————————————————————————————————————————————————————————————————————*
  6. import archive_directory
  7. #——————————————————————————————————————————————————————————————————————————————————————————————————————————————————————*
  8. # GET TOOL DIRECTORY
  9. #——————————————————————————————————————————————————————————————————————————————————————————————————————————————————————*
  10. def toolDirectory () :
  11. #--- Absolute path of tool directory
  12. DIRECTORY = os.path.expanduser ("~/treel-tools")
  13. #--- Return tool directory
  14. return DIRECTORY
  15. #——————————————————————————————————————————————————————————————————————————————————————————————————————————————————————*