-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·28 lines (26 loc) · 1016 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
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
from setuptools import setup
setup(name = "e2indicator",
packages = ["e2indicator"],
version = "0.9.0",
description = "Ubuntu indicator for Enigma2",
keywords = ["enigma2", "indicator", "ubuntu", "mpris"],
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
],
url = "https://github.com/aschaeffer/enigma2-indicator",
download_url = "https://github.com/aschaeffer/enigma2-indicator/archive/0.9.0.tar.gz",
author = "Andreas Schaeffer",
author_email = "e2indicator@schaeffernet.de",
license = "GPLv3",
data_files = [
("/usr/share/applications", ["dist/share/applications/e2indicator.desktop"]),
("/usr/share/pixmaps", ["dist/share/pixmaps/e2indicator.png"]),
],
entry_points = {"console_scripts": ["e2indicator = e2indicator.__main__:main"]},
install_requires = [
'appdirs', 'toml'
]
)