forked from aschaeffer/sony-av-indicator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·23 lines (21 loc) · 844 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
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
from setuptools import setup
setup(name = "sonyavindicator",
packages = ["sonyavindicator"],
version = "0.9.0",
description = "Ubuntu indicator for Sony AV Receiver",
keywords = ["sony", "avr", "indicator", "ubuntu", "mpris"],
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
],
url = "https://github.com/aschaeffer/sony-av-indicator",
author = "Andreas Schaeffer",
license = "GPLv3",
data_files = [
("/usr/share/applications", ["dist/share/applications/sonyavindicator.desktop"]),
("/usr/share/pixmaps", ["dist/share/pixmaps/sonyavindicator.png"]),
],
entry_points = {"console_scripts": ["sonyavindicator = sonyavindicator.__main__:main"]}
)