File: ob2fps

package info (click to toggle)
chemfp 1.0-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 1,580 kB
  • sloc: python: 9,390; ansic: 2,363; makefile: 110
file content (11 lines) | stat: -rwxr-xr-x 227 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
#!/usr/bin/env python

# Allow ^C to kill the process.
import signal
signal.signal(signal.SIGINT, signal.SIG_DFL)

try:
    from chemfp.commandline.ob2fps import main
    main()
except KeyboardInterrupt:
    raise SystemExit()