forked from simons-public/protonfixes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
37 lines (33 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
32
33
34
35
36
37
""" Install the protonfixes package
"""
import os
import glob
from setuptools import setup, find_packages
with open('README.md', 'r') as f:
long_description = f.read()
data_files = []
bin_dir = os.path.join(os.path.dirname(__file__), 'static')
for root, dirs, files in os.walk(bin_dir):
root_files = [os.path.join(root, i) for i in files]
data_files.append((root, root_files))
print(data_files)
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(),
zip_safe=False,
data_files = data_files,
)