src/platform/python/setup.py.in (view raw)
1from setuptools import setup
2import re
3
4classifiers = [
5 "Programming Language :: Python :: 2",
6# "Programming Language :: Python :: 3",
7 "License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)"
8]
9
10setup(name="${BINARY_NAME}",
11 version=re.sub("/", "-", "${VERSION_STRING}"),
12 author="Jeffrey Pfau",
13 author_email="jeffrey@endrift.com",
14 url="http://github.com/mgba-emu/mgba/",
15 packages=["mgba"],
16 license="MPL 2.0",
17 classifiers=classifiers
18 )