-
Notifications
You must be signed in to change notification settings - Fork 24
/
setup.py
executable file
·79 lines (74 loc) · 3.69 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
#!/usr/bin/env python3
from setuptools import setup, find_packages
import platform
yoke_package_data = [
'assets/joypad/*',
'assets/joypad/img/*',
'vjoy/LICENSE.TXT'
]
if platform.system() == 'Windows':
import ctypes # https://stackoverflow.com/questions/2963263/
if not (platform.release() in ('Vista', '7', '8', '8.1', 'post8.1', '10', 'post10')):
raise SystemError('Yoke depends on the vJoy driver, which needs Windows Vista SP1 or higher.')
elif platform.release() in ('Vista', '7', '8', '8.1', 'post8.1') or [int(v) for v in platform.version().split('.')[0:3]] <= [10, 0, 1803]:
DLL_path = 'vjoy/vJoyInterface-' + platform.architecture()[0] + '-legacy.dll'
else:
DLL_path = 'vjoy/vJoyInterface-' + platform.architecture()[0] + '-modern.dll'
yoke_package_data.append(DLL_path)
elif platform.system() == 'Android':
raise SystemError('This program is supposed to be installed on an external computer. '
'For Android, you can download the APK at '
'https://f-droid.org/en/packages/com.simonramstedt.yoke/')
elif platform.system() != 'Linux':
raise SystemError('Yoke is not compatible with ' + platform.system() + ' yet. '
'Please contact the author if you know any virtual joystick driver for your system.')
# https://stackoverflow.com/questions/20288711/
from setuptools.command.install import install
class PostInstallCommand(install):
# vJoy_url cannot be cached from the previous conditionals.
# After installation, pip parses setup.py again and the previous content of every variable is lost.
def run(self):
if platform.system() == 'Windows':
if platform.release() in ('Vista', '7', '8', '8.1', 'post8.1') or [int(v) for v in platform.version().split('.')[0:3]] <= [10, 0, 1803]:
vJoy_url = 'https://sourceforge.net/projects/vjoystick/files/Beta%202.x/2.1.8.39-270518/vJoySetup.exe/download'
else:
vJoy_url = 'https://sourceforge.net/projects/vjoystick/files/latest/download'
print('You should now see a prompt to download the vJoy driver.\n'
'If you need to install this driver, you can do so anytime by visiting ' + vJoy_url)
answer = ctypes.windll.user32.MessageBoxW(0,
'Yoke was installed succesfully, but can only work if the correct vJoy driver is installed. '
'The driver for Windows ' + platform.release() + ', version ' + platform.version() + ' can be found at:\n\n' + vJoy_url + '\n\n'
'Click OK if you want to download the installer now, or Cancel otherwise.',
'vJoy driver required', 33) # question prompt (33), OK (answer == 1) and Cancel (answer == 2) buttons
if answer == 1:
import webbrowser
webbrowser.open_new(vJoy_url)
install.run(self)
setup(
name='yoke',
version='0.1.1',
description='A hackable Android gamepad for Linux (and Windows).',
author='Simon Ramstedt',
author_email='[email protected]',
url='https://github.com/rmst/yoke',
download_url='',
license='MIT License',
dependency_links=[],
install_requires=[
'zeroconf',
'python-uinput; platform_system == "Linux"',
],
extras_require={},
scripts=['bin/yoke', 'bin/yoke-enable-uinput', 'bin/yoke-disable-uinput'],
cmdclass={
'install': PostInstallCommand,
},
packages=find_packages(),
package_data={'yoke': yoke_package_data},
platforms=['Linux', 'Windows 7', 'Windows 8', 'Windows 10'],
keywords=['gamepad', 'video games', 'gaming', 'controller', 'Android'],
classifiers=[
'Topic :: Games/Entertainment',
'Development Status :: 3 - Alpha',
]
)