forked from rbreu/beeref
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (33 loc) · 787 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
from setuptools import setup
setup(
name='BeeRef',
version='0.3.0-dev',
author='Rebecca Breu',
author_email='[email protected]',
url='https://github.com/rbreu/beeref',
license='LICENSE',
description='A simple reference image viewer',
install_requires=[
'pyQt6>=6.2.0',
'pyQt6-Qt6>=6.2.0',
'rectangle-packer>=2.0.1',
'exif',
],
packages=[
'beeref',
'beeref.actions',
'beeref.assets',
'beeref.documentation',
'beeref.fileio',
],
entry_points={
'gui_scripts': [
'beeref = beeref.__main__:main'
]
},
include_package_data=True,
package_data={
'beeref.assets': ['*.png'],
'beeref': ['documentation/*.html'],
},
)