-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
setup.py
41 lines (36 loc) · 1.46 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
import os
from setuptools import setup, find_packages
def read(f_name):
return open(os.path.join(os.path.dirname(__file__), f_name)).read()
setup(
name='nwg-shell-config',
version='0.5.54',
description='nwg-shell configuration utility',
packages=find_packages(),
include_package_data=True,
package_data={
"": ["glade/*", "autotranslate/*", "langs/*", "dialog/*", "hud/*", "shell/*", "updates/*"]
},
url='https://github.com/nwg-piotr/nwg-shell-config',
license='MIT',
author='Piotr Miller',
author_email='[email protected]',
python_requires='>=3.5.0',
install_requires=[],
entry_points={
'gui_scripts': [
'nwg-autotranslate = nwg_shell_config.autotranslate:main',
'nwg-shell-config = nwg_shell_config.main:main',
'nwg-shell-config-sway = nwg_shell_config.main_sway:main',
'nwg-shell-config-hyprland = nwg_shell_config.main_hyprland:main',
'nwg-lock = nwg_shell_config.locker:main',
'nwg-shell-help = nwg_shell_config.help:main',
'nwg-autotiling = nwg_shell_config.autotiling:main',
'nwg-shell-translate = nwg_shell_config.translate:main',
'nwg-update-indicator = nwg_shell_config.update_indicator:main',
'nwg-screenshot-applet = nwg_shell_config.screenshot_applet:main',
'nwg-dialog = nwg_shell_config.dialog:main',
'nwg-hud = nwg_shell_config.hud:main'
]
}
)