Files
skelsec-aardwolfgui/setup.py
T
2022-03-21 23:39:47 +00:00

69 lines
1.4 KiB
Python

from setuptools import setup, find_packages
from distutils.core import setup, Extension
import re
import platform
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,))
install_requires = []
if platform.system().lower() == 'windows':
install_requires.append('pyqt5==5.12.3')
install_requires.append('pyqt5-sip==12.7.0')
else:
install_requires.append('pyqt5')
install_requires.append('pyqt5-sip')
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.0.8',
'pyperclip',
] + install_requires,
classifiers=[
"Programming Language :: Python :: 3.8",
"Operating System :: OS Independent",
],
entry_points={
'console_scripts': [
'aardpclient = aardwolfgui.aardpclient:main',
],
}
)