This repository has been archived by the owner on Dec 29, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 221
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4dab0ee
commit 1f89fa3
Showing
2 changed files
with
9 additions
and
9 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,4 +20,4 @@ | |
""" | ||
|
||
VERSION = '3.4.post59.dev' | ||
VERSION = '3.4.post69.dev' |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,7 +21,7 @@ | |
""" | ||
|
||
from setuptools import setup | ||
import platform | ||
import platform | ||
|
||
requirements = ['PyQt5==5.14.2', 'pynput'] | ||
if platform.system() == 'Windows': | ||
|
@@ -30,9 +30,10 @@ | |
requirements.extend(['fonttools', 'psutil']) | ||
|
||
|
||
|
||
setup( | ||
name='guiscrcpy', | ||
version='3.4.post59.dev', | ||
version='3.4.post69.dev', | ||
description='An Open Source - Fast - Android Screen Mirroring system.', | ||
long_description="""<img src=https://github.com/srevinsaju/guiscrcpy/blob/master/guiscrcpy/ui/ui/guiscrcpy_logo.png width=25%> | ||
|
@@ -94,18 +95,16 @@ | |
author='srevinsaju', | ||
author_email="[email protected]", | ||
packages=['guiscrcpy'], | ||
data_files=[ | ||
('share/applications', ['guiscrcpy.desktop']) | ||
data_files = [ | ||
('share/applications', ['guiscrcpy.desktop'] ) | ||
], | ||
url="https://srevinsaju.github.io/guiscrcpy", | ||
download_url="https://github.com/srevinsaju/guiscrcpy/archive/master.zip", | ||
package_data={'guiscrcpy': ['*', '*.*', 'resources/*', 'ui/*', 'lib/*', 'platform/*', 'theme/*', 'ux/*', 'network/*', | ||
'settings/*', 'install/*', 'platform/windows_tools/*', 'ui/icons/*', 'ui/fonts/*', 'ui/rsrc/*', 'ui/ui/*']}, | ||
package_data={'guiscrcpy': ['*', '*.*', 'resources/*', 'ui/*', 'lib/*', 'platform/*', 'theme/*', 'ux/*', 'network/*', 'settings/*', 'install/*', 'platform/windows_tools/*', 'ui/icons/*', 'ui/fonts/*', 'ui/rsrc/*', 'ui/ui/*']}, | ||
include_package_data=True, | ||
install_requires=requirements, | ||
scripts=["scripts/guiscrcpy", "scripts/guiscrcpy-mapper"], | ||
entry_points={'console_scripts': [ | ||
'guiscrcpy = guiscrcpy.launcher:bootstrap']}, | ||
entry_points={'console_scripts': ['guiscrcpy = guiscrcpy.launcher:bootstrap']}, | ||
classifiers=['Operating System :: OS Independent', | ||
'Programming Language :: Python :: 3.7', | ||
'Programming Language :: Python :: 3.6', | ||
|
@@ -115,3 +114,4 @@ | |
'Operating System :: POSIX', | ||
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)'], | ||
) | ||
|