Files
jiang honglei 5cc503a849 Update to PyQt6
2024-09-04 15:28:34 +08:00

63 lines
1.2 KiB
Python

from setuptools import setup, find_packages
from distutils.core import setup
import re
VERSIONFILE="aardwolfgui/_version.py"
verstrline = open(VERSIONFILE, "rt").read()
VSRE = r"^__version__ = ['\"]([^'\"]*)['\"]"
mo = re.search(VSRE, verstrline, re.M)
if mo:
verstr = mo.group(1)
else:
raise RuntimeError("Unable to find version string in %s." % (VERSIONFILE,))
setup(
# Application name:
name="aardwolfgui",
# Version number (initial):
version=verstr,
# Application author details:
author="Tamas Jos",
author_email="info@skelsecprojects.com",
# Packages
packages=find_packages(),
# Include additional files into the package
include_package_data=True,
# Details
url="https://github.com/skelsec/aardwolfgui",
zip_safe = False,
#
# license="LICENSE.txt",
description="GUI for aardwolf RD/VNC client",
# long_description=open("README.txt").read(),
python_requires='>=3.7',
install_requires=[
'aardwolf>=0.2.7',
'pyperclip',
'Pillow',
'pyqt6',
#'pyqt6-sip',
],
classifiers=[
"Programming Language :: Python :: 3.8",
"Operating System :: OS Independent",
],
entry_points={
'console_scripts': [
'ardpclient = aardwolfgui.aardpclient:main',
],
}
)