forked from ChimeraOS/chimera
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
69 lines (66 loc) · 2.56 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
"Setup chimera app"
from glob import glob
from setuptools import setup, find_packages
setup(
name="Chimera",
version="0.22.5",
packages=find_packages(exclude=['tests']),
entry_points={
'console_scripts': ['chimera = chimera_app.__main__:main']
},
data_files=[
('bin', glob('bin/*')),
('lib/systemd/system', glob('systemd/system/*')),
('lib/systemd/user', glob('systemd/user/*')),
('libexec/chimera', glob('libexec/*')),
('share/chimera/images', glob('images/*.png')),
('share/chimera/images/flathub', glob('images/flathub/*.png')),
('share/chimera/images/splash', glob('images/splash/*.png')),
('share/chimera/images/cart-loader', glob('images/cart-loader/*.png')),
('share/chimera/shortcuts', glob('shortcuts/*.yaml')),
('share/chimera/views', glob('views/*.tpl')),
('share/chimera/public', glob('public/*.js')),
('share/chimera/public', glob('public/*.css')),
('share/chimera/public', glob('public/*.webp')),
('share/chimera/config', glob('config/*.cfg')),
('share/chimera/config', glob('config/*.conf')),
('share/chimera/migrations', glob('migrations/*')),
('share/doc/chimera', ['README.md']),
('share/doc/chimera', ['LICENSE']),
('share/applications', ['org.chimeraos.app.desktop']),
],
# Project uses reStructuredText, so ensure that the docutils get
# installed or upgraded on the target machine
install_requires=[
'bottle',
'pyyaml',
'requests',
'beaker',
'pyglet',
'psutil',
'bcrypt',
'vdf',
'inotify_simple',
'pyudev',
'plyvel',
'waitress',
],
# metadata to display on PyPI
author="Alesh Slovak",
author_email="[email protected]",
description=("Chimera is a web based tool for installing non-Steam "
"software to your Linux based couch gaming system. It "
"was primarily developed for ChimeraOS."),
keywords=("steam steamos couch emulation flatpak flathub chimera app "
"chimeraos gamer gaming"),
url="https://github.com/chimeraos/chimera", # project home page, if any
project_urls={
"Bug Tracker": "https://github.com/chimeraos/chimera/issues",
"Documentation": ("https://github.com/chimeraos/chimera/"
"blob/master/README.md"),
"Source Code": "https://github.com/chimeraos/chimera",
},
classifiers=[
'License :: OSI Approved :: MIT License'
]
)