dirk / constrictor

Powerful Python web-development framework.

This URL has Read+Write access

constrictor / __init__.py
100644 8 lines (7 sloc) 0.209 kb
1
2
3
4
5
6
7
8
VERSION = (0, 5, 1, 'Beta')
# Pretty representation of the version.
VERSION_STRING = '.'.join([str(x) for x in VERSION[:3]])
 
if __file__.endswith('.pyc'):
  PATH = __file__[:-12]
else:
  PATH = __file__[:-11]