File: txaws-discover

package info (click to toggle)
txaws 0.2.3-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd, wheezy
  • size: 1,004 kB
  • ctags: 1,475
  • sloc: python: 9,092; makefile: 28
file content (15 lines) | stat: -rwxr-xr-x 308 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/usr/bin/env python

# Copyright (C) 2010 Jamu Kakar <jkakar@kakar.ca>
# Licenced under the txaws licence available at /LICENSE in the txaws source.

import os
import sys

if os.path.isdir("txaws"):
    sys.path.insert(0, ".")

from txaws.client.discover.entry_point import main


sys.exit(main(sys.argv))