From e981268e745850c0002050976e0b305d848fc2e5 Mon Sep 17 00:00:00 2001 From: Milan Stute Date: Tue, 20 Aug 2019 18:02:46 +0200 Subject: [PATCH] Prepare for pypi.org release see #8 --- COPYING => LICENSE | 0 opendrop/__init__.py | 2 +- setup.py | 10 ++++++++-- 3 files changed, 9 insertions(+), 3 deletions(-) rename COPYING => LICENSE (100%) diff --git a/COPYING b/LICENSE similarity index 100% rename from COPYING rename to LICENSE diff --git a/opendrop/__init__.py b/opendrop/__init__.py index e28c712..29612c5 100644 --- a/opendrop/__init__.py +++ b/opendrop/__init__.py @@ -19,6 +19,6 @@ along with this program. If not, see . import logging -__version__ = '0.10' +__version__ = '0.10.1' logger = logging.getLogger(__name__) diff --git a/setup.py b/setup.py index e9ce382..926f55a 100644 --- a/setup.py +++ b/setup.py @@ -11,10 +11,16 @@ setup( name='opendrop', version=__version__, python_requires='>=3.6', - description='An Open Source AirDrop Implementation', + description='An open Apple AirDrop implementation', long_description=long_description, + long_description_content_type='text/markdown', url='https://owlink.org', - author='Milan Stute, Alexander Heinrich', + project_urls={ + 'Source': 'https://github.com/seemoo-lab/opendrop', + 'Research Paper': 'https://usenix.org/conference/usenixsecurity19/presentation/stute', + }, + author='The Open Wireless Link Project', + author_email='mstute@seemoo.tu-darmstadt.de', classifiers=[ 'License :: OSI Approved :: GNU General Public License v3 (GPLv3)', 'Operating System :: MacOS',