all repos — mgba @ 7bd5ae9a701d00dd2668ae4ad5ddc3ba2785a333

mGBA Game Boy Advance Emulator

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      setup_requires=['cffi>=1.6'],
17      install_requires=['cffi>=1.6', 'cached-property'],
18      license="MPL 2.0",
19      classifiers=classifiers
20      )