mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2024-12-19 21:17:54 +00:00
18 lines
444 B
Python
18 lines
444 B
Python
#! /usr/bin/python
|
|
|
|
import os.path, sys
|
|
|
|
path = []
|
|
if sys.platform == 'win32':
|
|
support_lib = "support/Lib/site-packages"
|
|
else:
|
|
pyver = "python%d.%d" % (sys.version_info[:2])
|
|
support_lib = "support/lib/%s/site-packages" % pyver
|
|
|
|
if os.path.exists(support_lib):
|
|
for fn in os.listdir(support_lib):
|
|
if fn.endswith(".egg"):
|
|
path.append(os.path.abspath(os.path.join(support_lib, fn)))
|
|
|
|
print os.pathsep.join(path)
|