ich habe folgende setup.py zusammengebaut:
Code: Alles auswählen
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
with open('README.rst') as f:
readme = f.read()
with open('LICENSE') as f:
license = f.read()
setup(
name='check_tool',
version='0.6',
packages=['ui', 'ui.dialogs', 'icons', 'tests', 'config', 'initui', 'sample', 'requester', 'configreader',
'configwriter', 'uioperations'],
package_data={"icons": ["2xclient.png"], "config": ["config.json"]},
url='',
license=license,
author='niesel',
author_email='meineadresse',
description='',
install_requires=['requests', 'pyqt5', 'qtpy', 'loguru', 'urllib3']
)
Nun scheitere ich jedoch daran, dass er bei pyqt5 die installation scheitert.
Code: Alles auswählen
ERROR: Could not find a version that satisfies the requirement pyqt5 (from check_tool) (from versions: none)
ERROR: No matching distribution found for pyqt5 (from check_tool)/
VG