forked from AKOBIBILI/pyqt_virtual_keyboard
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (25 loc) · 1.05 KB
/
setup.py
File metadata and controls
29 lines (25 loc) · 1.05 KB
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
from distutils.util import convert_path
from setuptools import find_packages, setup
data = {}
version_path = convert_path("version.py")
with open(version_path) as version_file:
exec(version_file.read(), data)
setup(name="pyqt_virtual_keyboard",
version=data["VERSION"],
description="Virtual keyboard based on PyQt",
url="https://github.com/timerke/pyqt_virtual_keyboard",
packages=find_packages(),
python_requires=">=3.6, <=3.9.13",
install_requires=[
"PyQt5>=5.8.2",
],
package_data={"pyqt_virtual_keyboard": ["backspace.png",
"keyboard.png",
"keyboard_en.ui",
"keyboard_ru.ui",
"keyboarddialog.ui",
"up-arrow.png",
"up-arrow-black.png",
"world.png"],
},
)