Skip to content
This repository has been archived by the owner on Dec 29, 2023. It is now read-only.

Commit

Permalink
Update setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
srevinsaju committed Apr 20, 2020
1 parent 4dab0ee commit 1f89fa3
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion guiscrcpy/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@
"""

VERSION = '3.4.post59.dev'
VERSION = '3.4.post69.dev'
16 changes: 8 additions & 8 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"""

from setuptools import setup
import platform
import platform

requirements = ['PyQt5==5.14.2', 'pynput']
if platform.system() == 'Windows':
Expand All @@ -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%>
Expand Down Expand Up @@ -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',
Expand All @@ -115,3 +114,4 @@
'Operating System :: POSIX',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)'],
)

0 comments on commit 1f89fa3

Please sign in to comment.