Explorar el Código

Update setup.py

Kentaro Wada hace 7 años
padre
commit
52198771db
Se han modificado 1 ficheros con 2 adiciones y 1 borrados
  1. 2 1
      setup.py

+ 2 - 1
setup.py

@@ -47,7 +47,8 @@ if sys.argv[1] == 'release':
     commands = [
         'git tag v{:s}'.format(version),
         'git push origin master --tag',
-        'python setup.py sdist upload',
+        'python setup.py sdist',
+        'twine upload labelme-{:s}.tar.gz'.format(version),
     ]
     sys.exit(sum(subprocess.call(shlex.split(cmd)) for cmd in commands))