all repos — mgba @ 04ebc6a06e654f5205b5df3f69c08cc9e93d4784

mGBA Game Boy Advance Emulator

src/platform/python/setup.py.in (view raw)

 1from setuptools import setup
 2import re
 3
 4classifiers = [
 5    "Programming Language :: C",
 6    "Programming Language :: Python :: 2",
 7    "Programming Language :: Python :: 3",
 8    "License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
 9    "Topic :: Games/Entertainment",
10    "Topic :: System :: Emulators"
11]
12
13setup(name="${BINARY_NAME}",
14      version=re.sub("/", "-", "${VERSION_STRING}"),
15      author="Jeffrey Pfau",
16      author_email="jeffrey@endrift.com",
17      url="http://github.com/mgba-emu/mgba/",
18      packages=["mgba"],
19      setup_requires=['cffi>=1.6'],
20      install_requires=['cffi>=1.6', 'cached-property'],
21      cffi_modules=["_builder.py:ffi"],
22      license="MPL 2.0",
23      classifiers=classifiers
24      )