forked from rbreu/beeref
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
37 lines (36 loc) · 912 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
35
36
37
from setuptools import setup
setup(
name='BeeRef',
version='0.3.3-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.5.0,<=6.6.1',
'pyQt6-Qt6>=6.5.0,<=6.6.1',
'rectangle-packer>=2.0.1,<=2.0.2',
'exif>=1.3.5,<=1.6.0',
],
packages=[
'beeref',
'beeref.actions',
'beeref.assets',
'beeref.config',
'beeref.documentation',
'beeref.fileio',
'beeref.widgets',
'beeref.widgets.controls',
],
entry_points={
'gui_scripts': [
'beeref = beeref.__main__:main'
]
},
include_package_data=True,
package_data={
'beeref.assets': ['*.png'],
'beeref': ['documentation/*.html'],
},
)