I've developed a program named FMiner, it's a web scraping software base on PySide(webkit). I moved it to Mac OS X with Py2App, and made it to a dmg file with the script like this:
os.system(r'macdeployqt fminer.app’)
os.system(r'hdiutil create fminer-mac-' +gdata.VERSION + r'.dmg -volname "fminer" -fs HFS+ -srcfolder "dist"')
It work fine, when people download and install it.
But how to submit it to app store? I just found this link: Is it possible to deploy a Python application on the Mac App Store?, but it's outdate. And I'm not family with xcode, I need the details of steps.