forked from gmdfalk/blockify
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·39 lines (32 loc) · 1009 Bytes
/
Copy pathsetup.py
File metadata and controls
executable file
·39 lines (32 loc) · 1009 Bytes
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
from os.path import dirname, join
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
def read(filename):
with open(join(dirname(__file__), filename)) as f:
return f.read()
_name = "blockify"
_license = "MIT"
setup(
name=_name,
description="Mute spotify advertisements.",
long_description=read("README.md"),
version="1.0",
license=_license,
url="https://github.com/mikar/{}".format(_name),
author="Max Demian",
author_email="mikar@gmx.de",
packages=[_name, _name + "/data"],
package_data={_name + "/data": ["*.png", "blockify_list"]},
install_package_data=True,
entry_points={
"console_scripts": [
"{0} = {0}.{0}:main".format(_name),
"{0}-dbus = {0}.{0}dbus:main".format(_name),
],
"gui_scripts": [
"{0}-ui = {0}.{0}ui:main".format(_name),
],
}
)