Created
October 25, 2016 13:59
-
-
Save altendky/8fd2d13e19df96c9196189066a0bc658 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (venv) C:\Users\IEUser\Desktop\src\ST>deactivate & rd /s /q venv & python -m virtualenv venv & venv\Scripts\activate & python setup.py develop | |
| Using base prefix 'C:\\Program Files (x86)\\Python35-32' | |
| New python executable in C:\Users\IEUser\Desktop\src\ST\venv\Scripts\python.exe | |
| Installing setuptools, pip, wheel...done. | |
| running develop | |
| running egg_info | |
| writing dependency_links to EPyQ.egg-info\dependency_links.txt | |
| writing top-level names to EPyQ.egg-info\top_level.txt | |
| writing requirements to EPyQ.egg-info\requires.txt | |
| writing EPyQ.egg-info\PKG-INFO | |
| writing entry points to EPyQ.egg-info\entry_points.txt | |
| reading manifest file 'EPyQ.egg-info\SOURCES.txt' | |
| writing manifest file 'EPyQ.egg-info\SOURCES.txt' | |
| running build_ext | |
| Creating c:\users\ieuser\desktop\src\st\venv\lib\site-packages\EPyQ.egg-link (link to .) | |
| Adding EPyQ 0.1 to easy-install.pth file | |
| Installing epyq-script.pyw script to C:\Users\IEUser\Desktop\src\ST\venv\Scripts | |
| Installing epyq.exe script to C:\Users\IEUser\Desktop\src\ST\venv\Scripts | |
| Installing epyq.exe.manifest script to C:\Users\IEUser\Desktop\src\ST\venv\Scripts | |
| Installed c:\users\ieuser\desktop\src\st | |
| Processing dependencies for EPyQ==0.1 | |
| Searching for PyQt5 | |
| Reading https://pypi.python.org/simple/PyQt5/ | |
| No local packages or working download links found for PyQt5 | |
| error: Could not find suitable distribution for Requirement.parse('PyQt5') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # import platform | |
| from setuptools import setup, find_packages | |
| # conditional_requires = [] | |
| # arch = platform.architecture() | |
| # if arch[1].lower().startswith('win'): | |
| # conditional_requires.append('pyqt5_tools') | |
| setup( | |
| name="EPyQ", | |
| version="0.1", | |
| author="EPC Power Corp.", | |
| classifiers=[ | |
| ("License :: OSI Approved :: " | |
| "GNU General Public License v2 or later (GPLv2+)") | |
| ], | |
| packages=find_packages(), | |
| entry_points={'gui_scripts': ['epyq = epyq.__main__:main']}, | |
| install_requires=['PyQt5'] | |
| ) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment