From 1fcd8d13fce5d3b5bf8a6317cf3918de49ae00ab Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Thu, 17 Oct 2024 14:22:47 +0200 Subject: [PATCH] setup: fill long_description and url Change-Id: Ib5db4d9c33f205d181ed78c65265601caf23a53d --- setup.py | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index 6e74ba4..e005d36 100755 --- a/setup.py +++ b/setup.py @@ -33,18 +33,23 @@ import frappy.version scripts = [str(script) for script in Path('bin').glob('frappy-*') if not str(script).endswith('cfg-editor')] - frappydir = Path(__file__).parent / 'frappy' uidir = frappydir / 'gui' / 'ui' uis = [str(f.relative_to(frappydir)) for f in uidir.iterdir()] +with open('README.md') as f: + long_description = f.read() + setup( name='frappy-core', version=frappy.version.get_version(), - license='GPL', + license='GPL-2.0+', + url='https://github.com/SampleEnvironment/frappy', + description='Implementation of SECoP server and client', + long_description=long_description, + long_description_content_type='text/markdown', author='Enrico Faulhaber', author_email='enrico.faulhaber@frm2.tum.de', - description='SECoP Playground core system', packages=find_packages(exclude=['test']), package_data={'frappy': ['RELEASE-VERSION'] + uis}, install_requires=[