forked from ChimeraOS/chimera
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
48 lines (44 loc) · 1.76 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
from setuptools import setup, find_packages
from glob import glob
setup(
name="Steam-Buddy",
version="0.4.0",
packages=find_packages(exclude=['tests']),
scripts=['steam-buddy'],
data_files=[
('share/steam-buddy/images', glob('images/*.png')),
('share/steam-buddy/images/flathub', glob('images/flathub/*.png')),
('share/steam-buddy/views', glob('views/*.tpl')),
('share/steam-buddy/config', glob('config/*.cfg')),
('share/steam-buddy', ['launcher']),
('bin', glob('bin/*')),
('bin', ['toggle-steamos-compositor']),
('share/steam-buddy/bin', ['steam-buddy-authenticator']),
('share/doc/steam-buddy', ['README.md']),
('share/doc/steam-buddy', ['LICENSE']),
],
# Project uses reStructuredText, so ensure that the docutils get
# installed or upgraded on the target machine
install_requires=[
'bottle',
'pyyaml',
'requests',
'beaker',
'pygame',
'psutil',
],
# metadata to display on PyPI
author="Alesh Slovak",
author_email="[email protected]",
description="Steam Buddy is a web based tool for installing non-Steam software to your Linux based couch gaming system. It was primarily developed for GamerOS.",
keywords="steam steamos couch emulation flatpak flathub steam-buddy buddy gameros gamer gaming",
url="https://github.com/gamer-os/steam-buddy", # project home page, if any
project_urls={
"Bug Tracker": "https://github.com/gamer-os/steam-buddy/issues",
"Documentation": "https://github.com/gamer-os/steam-buddy/blob/master/README.md",
"Source Code": "https://github.com/gamer-os/steam-buddy",
},
classifiers=[
'License :: OSI Approved :: MIT License'
]
)