Files
nwg-panel/setup.py
piotr 179ca6b009 wtf
2021-01-31 21:54:56 +01:00

31 lines
744 B
Python

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='nwgpanel',
version='0.0.1',
description='GTK-based panel for sway window manager',
packages=find_packages(),
include_package_data=True,
package_data={"": ["config/*", "icons_dark/*", "icons_light/*", "executors/*"]},
url='https://github.com/nwg-piotr/nwg-panel',
license='MIT',
author='Piotr Miller',
author_email='nwg.piotr@gmail.com',
python_requires='>=3.4.0',
install_requires=[
'pygobject',
'pyalsa'
],
entry_points={
'gui_scripts': [
'nwgpanel = nwg_panel.main:main'
]
}
)