File: release.py

package info (click to toggle)
python-keyring 0.7.1-1%2Bdeb7u1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 428 kB
  • sloc: python: 1,563; makefile: 29
file content (10 lines) | stat: -rw-r--r-- 237 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
#!/usr/bin/env python

"""
release.py - releases keyring to the cheeseshop
"""

import subprocess

# we only upload a source distribution now as there are no C extensions
subprocess.Popen([sys.executable, 'setup.py', 'sdist', 'upload'])