remove pypi publishing stuff

This commit is contained in:
Micah Lee 2014-06-20 00:02:58 -04:00
parent 785078957e
commit 29a269253a

View File

@ -1,17 +1,14 @@
#!/usr/bin/env python #!/usr/bin/env python
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
import os, sys, subprocess, platform import os, sys, platform
from glob import glob
try: try:
from setuptools import setup from setuptools import setup
except ImportError: except ImportError:
from distutils.core import setup from distutils.core import setup
if sys.argv[-1] == 'publish':
subprocess.call(['python', 'setup.py', 'sdist', 'upload', '--sign'])
sys.exit()
version = open('version').read().strip() version = open('version').read().strip()
args = {} args = {}
@ -58,3 +55,4 @@ setup(
packages=['onionshare', 'onionshare_gui'], packages=['onionshare', 'onionshare_gui'],
**args **args
) )