beeref/setup.py
2021-07-09 15:45:02 +02:00

32 lines
723 B
Python

from setuptools import setup
setup(
name='BeeRef',
version='0.1.0',
author='Rebecca Breu',
author_email='rebecca@rbreu.de',
url='https://github.com/rbreu/beeref',
license='LICENSE',
description='A simple reference image viewer',
install_requires=[
'pyQt6>=6.1,<=6.1.1',
'pyQt6-Qt6>=6.1,<=6.1.1',
'rectangle-packer>=2.0.1',
'exif',
],
packages=[
'beeref',
'beeref.actions',
'beeref.assets',
'beeref.documentation',
'beeref.fileio',
],
entry_points={
'gui_scripts': [
'beeref = beeref.__main__:main'
]
},
package_data={
'assets': ['*.png', '*.html'],
},
)