diff options
| author | bozo.kopic <bozo@kopic.xyz> | 2022-04-23 20:47:43 +0200 |
|---|---|---|
| committer | bozo.kopic <bozo@kopic.xyz> | 2022-04-23 20:47:43 +0200 |
| commit | 3e4822faed63c81d88443a08756db80c14e1b202 (patch) | |
| tree | 149ea81aec2d078fe837e988519358b3df2b97e3 | |
| parent | c5f307cda74340808a08c484f3ab639b1aae75ce (diff) | |
setup.py fix
| -rwxr-xr-x | build.sh | 1 | ||||
| -rw-r--r-- | setup.py | 5 |
2 files changed, 4 insertions, 2 deletions
@@ -6,6 +6,7 @@ cd $(dirname -- "$0") PYTHON=${PYTHON:-python3} +rm -rf ./build $PYTHON setup.py \ build --build-base build \ egg_info --egg-base build \ @@ -7,14 +7,15 @@ readme = (Path(__file__).parent / 'README.rst').read_text() setup( name='mbgui', - version='0.1.1', + version='0.1.2', description='Maildir GUI based on mblaze', long_description=readme, long_description_content_type='text/x-rst', url='https://github.com/bozokopic/mbgui', packages=['mbgui'], install_requires=['PySide6'], - package_data={'mbgui': ['icons/*.png']}, + package_data={'mbgui': ['icons/*.png', + 'main.ui']}, license='GPLv3', classifiers=[ 'Programming Language :: Python :: 3', |
