1234567891011121314151617181920212223 |
- #! /usr/bin/env python
- # -*- coding: UTF-8 -*-
- #——————————————————————————————————————————————————————————————————————————————————————————————————————————————————————*
- import os, urllib, subprocess, sys
- #——————————————————————————————————————————————————————————————————————————————————————————————————————————————————————*
- import archive_directory
- #——————————————————————————————————————————————————————————————————————————————————————————————————————————————————————*
- # GET TOOL DIRECTORY
- #——————————————————————————————————————————————————————————————————————————————————————————————————————————————————————*
- def toolDirectory () :
- #--- Absolute path of tool directory
- DIRECTORY = os.path.expanduser ("~/treel-tools")
- #--- Return tool directory
- return DIRECTORY
- #——————————————————————————————————————————————————————————————————————————————————————————————————————————————————————*
|