-
Notifications
You must be signed in to change notification settings - Fork 113
/
setup.py
29 lines (27 loc) · 1018 Bytes
/
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
""" Install the protonfixes package
"""
import glob
from setuptools import setup, find_packages
with open('README.md', 'r') as f:
long_description = f.read()
setup(
name='protonfixes',
version='1.0.16',
description='Python module for applying fixes at runtime for games not supported by Steam Proton',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/simons-public/protonfixes',
author='Chris Simons',
author_email='[email protected]',
classifiers=[
'Development Status :: 3 - Alpha',
'Topic :: Games/Entertainment',
'Operating System :: POSIX :: Linux',
'License :: OSI Approved :: BSD License',
],
keywords='proton steam winetricks protonfixes',
packages=find_packages(exclude=['tests']),
zip_safe=False,
package_data={'protonfixes':['*.kv','static/*','gamefixes/verbs/*']},
scripts=['scripts/install_protonfixes', 'scripts/soldier_protonfixify'],
)