nwg-shell/setup.py

48 lines
1.3 KiB
Python
Raw Normal View History

2022-02-07 03:02:58 +03:00
import os
from setuptools import setup, find_packages
def read(f_name):
return open(os.path.join(os.path.dirname(__file__), f_name)).read()
2022-07-11 00:50:11 +03:00
2022-02-07 03:02:58 +03:00
setup(
name='nwg-shell',
2024-01-26 05:24:19 +03:00
version='0.5.27',
2022-02-07 03:02:58 +03:00
description='GTK3-based shell for sway Wayland compositor',
packages=find_packages(),
include_package_data=True,
package_data={
2022-09-10 04:42:32 +03:00
"": ["skel/stuff/*",
2022-02-07 03:16:42 +03:00
"skel/config/nwg-bar/*",
"skel/config/nwg-dock/*",
2023-06-08 01:59:27 +03:00
"skel/config/nwg-dock-hyprland/*",
2022-02-07 03:16:42 +03:00
"skel/config/nwg-drawer/*",
"skel/config/nwg-panel/*",
2023-01-21 03:59:09 +03:00
"skel/config/nwg-look/*",
2022-05-07 02:41:13 +03:00
"skel/data/nwg-look/*",
2023-02-01 04:34:20 +03:00
"skel/data/nwg-shell-config/*",
2022-02-07 04:54:55 +03:00
"skel/config/sway/*",
2023-06-04 17:50:23 +03:00
"skel/config/hypr/*",
2022-02-07 15:32:11 +03:00
"skel/config/swaync/*",
2022-09-10 04:42:32 +03:00
"skel/config/foot/*",
"skel/config/gtklock/*",
2023-06-15 01:30:49 +03:00
"skel/config/gtk-3.0/*",
2022-02-07 15:32:11 +03:00
"skel/*"]
2022-02-07 03:02:58 +03:00
},
url='https://github.com/nwg-piotr/nwg-shell',
license='MIT',
author='Piotr Miller',
author_email='nwg.piotr@gmail.com',
python_requires='>=3.6.0',
install_requires=[],
entry_points={
'gui_scripts': [
'nwg-shell = nwg_shell.main:main',
2022-04-26 01:50:05 +03:00
'nwg-shell-installer = nwg_shell.installer:main',
'nwg-shell-check-updates = nwg_shell.check_updates:main'
2022-02-07 03:02:58 +03:00
]
}
)