from setuptools import setup import re classifiers = [ "Programming Language :: Python :: 2", # "Programming Language :: Python :: 3", "License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)" ] setup(name="${BINARY_NAME}", version=re.sub("/", "-", "${VERSION_STRING}"), author="Jeffrey Pfau", author_email="jeffrey@endrift.com", url="http://github.com/mgba-emu/mgba/", packages=["mgba"], license="MPL 2.0", classifiers=classifiers )