forked from gmdfalk/blockify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·36 lines (30 loc) · 985 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
29
30
31
32
33
34
35
36
from os.path import dirname, join
from blockify.util import VERSION
from setuptools import setup, find_packages
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 = VERSION,
license = _license,
url = "https://github.com/mikar/{}".format(_name),
author = "Max Falk",
author_email = "[email protected]",
packages = find_packages(),
package_data = { _name : ['data/*']},
install_package_data=True,
entry_points= {
"console_scripts": [
"{0} = {0}.cli:main".format(_name),
"{0}-dbus = {0}.dbusclient:main".format(_name),
],
"gui_scripts": [
"{0}-ui = {0}.gui:main".format(_name),
],
}
)