-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (28 loc) · 1.1 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
from setuptools import setup, Extension
import os.path
setup_directory = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(setup_directory, 'README.md')) as readme_file:
long_description = readme_file.read()
setup(
name='pygamemode',
version='0.1.2',
description='A Python wrapper for the GameMode client API.',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/aforren1/pygamemode',
author='Alexander Forrence',
author_email='[email protected]',
license='BSD 3',
classifiers=[
'Development Status :: 4 - Beta',
'Operating System :: POSIX :: Linux',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3',
'Topic :: Multimedia :: Graphics',
'Topic :: Scientific/Engineering :: Visualization',
],
ext_modules = [Extension('gamemode', ['pygamemode.c'],
extra_compile_args=['-std=c99', '-g0'],
py_limited_api=True)]
)