From 3ea492efbc2b92e36d5fb6c4a2e4726ff09ff51c Mon Sep 17 00:00:00 2001 From: Sarath Menon Date: Mon, 19 Jun 2023 14:53:41 +0200 Subject: [PATCH] fix readme bug in setup --- setup.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/setup.py b/setup.py index ff826c7..370ba46 100644 --- a/setup.py +++ b/setup.py @@ -11,10 +11,8 @@ author_email='sarath.menon@pyscal.org', description='Ontology based structural manipulation and quering', long_description=readme, - # tell setuptools to look for any packages under 'src' + long_description_content_type='text/markdown', packages=find_packages(include=['pyscal_rdf', 'pyscal_rdf.*']), - # tell setuptools that all packages will be under the 'src' directory - # and nowhere else zip_safe=False, download_url = 'https://github.com/pyscal/pyscal_rdf', url = 'https://pyscal.org', @@ -25,5 +23,4 @@ 'Programming Language :: Python :: 3' ], include_package_data=True, - #package_data={'': ['*.owl']}, )