From 55a05063ce4202dbcdc0880930666fe66fa1aad6 Mon Sep 17 00:00:00 2001 From: Tiago Borges Date: Fri, 7 Dec 2018 10:22:22 -0300 Subject: [PATCH] wip --- setup.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/setup.py b/setup.py index d1029962..1907823b 100644 --- a/setup.py +++ b/setup.py @@ -13,10 +13,9 @@ with io.open('README.md', encoding='utf-8') as f: readme = f.read() -metadata, options = get_config() -metadata['ext_modules'] = [ - setuptools.Extension("MySQLdb._mysql", sources=['MySQLdb/_mysql.c'], **options) -] +metadata = {} +options = {} +metadata['ext_modules'] = [] metadata['long_description'] = readme metadata['long_description_content_type'] = "text/markdown" setuptools.setup(**metadata)