-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathsetup.py
46 lines (41 loc) · 1.28 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
42
43
44
45
46
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',
version='0.5.44',
description='GTK3-based shell for sway Wayland compositor',
packages=find_packages(),
include_package_data=True,
package_data={
"": ["skel/stuff/*",
"skel/config/nwg-dock/*",
"skel/config/nwg-dock-hyprland/*",
"skel/config/nwg-drawer/*",
"skel/config/nwg-panel/*",
"skel/config/nwg-look/*",
"skel/data/nwg-look/*",
"skel/data/nwg-shell-config/*",
"skel/config/sway/*",
"skel/config/hypr/*",
"skel/config/nwg-displays/*",
"skel/config/swaync/*",
"skel/config/foot/*",
"skel/config/gtklock/*",
"skel/config/gtk-3.0/*",
"skel/*"]
},
url='https://github.com/nwg-piotr/nwg-shell',
license='MIT',
author='Piotr Miller',
author_email='[email protected]',
python_requires='>=3.6.0',
install_requires=[],
entry_points={
'gui_scripts': [
'nwg-shell = nwg_shell.main:main',
'nwg-shell-installer = nwg_shell.installer:main'
]
}
)