File: version.py

package info (click to toggle)
python-setuptools 32.3.1-1
  • links: PTS
  • area: main
  • in suites: stretch
  • size: 2,848 kB
  • ctags: 3,346
  • sloc: python: 19,099; ansic: 195; makefile: 97; xml: 14
file content (6 lines) | stat: -rw-r--r-- 144 bytes parent folder | download | duplicates (16)
1
2
3
4
5
6
import pkg_resources

try:
    __version__ = pkg_resources.get_distribution('setuptools').version
except Exception:
    __version__ = 'unknown'