diff options
| author | bozo.kopic <bozo@kopic.xyz> | 2022-01-22 01:14:16 +0100 |
|---|---|---|
| committer | bozo.kopic <bozo@kopic.xyz> | 2022-01-22 01:14:16 +0100 |
| commit | bb47b580104052a6c1cfaf46fde4570060d1a19c (patch) | |
| tree | ba049c76ea922c3b46f560981c2b570662052bdd /setup.py | |
init
Diffstat (limited to 'setup.py')
| -rw-r--r-- | setup.py | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..3e29191 --- /dev/null +++ b/setup.py @@ -0,0 +1,21 @@ +from pathlib import Path +from setuptools import setup + + +readme = (Path(__file__).parent / 'README.rst').read_text() + + +setup( + name='mbgui', + version='0.0.1', + description='Maildir GUI based on mblaze', + long_description=readme, + long_description_content_type='text/x-rst', + url='https://github.com/bozokopic/mbgui', + packages=['mbgui'], + package_data={'mbgui': ['icons/*.png']}, + license='GPLv3', + classifiers=[ + 'Programming Language :: Python :: 3', + 'License :: OSI Approved :: GNU General Public License v3 (GPLv3)'], + entry_points={'console_scripts': ['mbgui = mbgui.main:main']}) |
