beeref/setup.py

24 lines
501 B
Python
Raw Normal View History

from setuptools import setup
setup(
name='BeeRef',
version='0.0.1',
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',
],
packages=['beeref'],
entry_points={
'gui_scripts': [
'beeref = beeref.__main__:main'
]
},
2021-03-24 08:54:14 +00:00
package_data={
'assets': ['*.png', '*.svg'],
},
)