Require Python >=3.6

Fixes #2
This commit is contained in:
Milan Stute
2019-06-14 00:26:18 +02:00
parent f143b23570
commit 31b8797e4d
2 changed files with 8 additions and 9 deletions
+2 -1
View File
@@ -13,7 +13,8 @@ OpenDrop is not affiliated with or endorsed by Apple Inc. Use this code at your
## Requirements
To achieve compatibility with Apple AirDrop, OpenDrop requires the target platform to support a specific Wi-Fi link layer as well as several libraries.
To achieve compatibility with Apple AirDrop, OpenDrop requires the target platform to support a specific Wi-Fi link layer.
In addition, it requires Python >=3.6 as well as several libraries.
**Apple Wireless Direct Link.**
As AirDrop exclusively runs over Apple Wireless Direct Link (AWDL), OpenDrop is only supported on macOS or on Linux systems running
+6 -8
View File
@@ -10,27 +10,25 @@ with open(join(this_dir, 'README.md'), encoding='utf-8') as file:
setup(
name='opendrop',
version=__version__,
python_requires='>=3.6',
description='An Open Source AirDrop Implementation',
long_description=long_description,
url='https://owlink.org',
author='Milan Stute, Alexander Heinrich',
classifiers=[
'Intended Audience :: Developers',
'Topic :: Utilities',
'License :: Public Domain',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: MacOS',
'Operating System :: POSIX :: Linux',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.6.3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
keywords='cli',
packages=find_packages(exclude=['docs']),
package_data={
'opendrop': ['certs/*.pem']
},
install_requires=['pycrypto', 'requests', 'fleep', 'netifaces', 'Pillow',
'requests_toolbelt', 'ctypescrypto', 'libarchive-c'],
entry_points={