src/platform/python/setup.py.in (view raw)
1from setuptools import setup
2
3classifiers = [
4 "Programming Language :: Python :: 2",
5# "Programming Language :: Python :: 3",
6 "License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)"
7]
8
9
10setup(name="${BINARY_NAME}",
11 version="${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 )