We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a0e8876 commit 0341a1fCopy full SHA for 0341a1f
setup.py
@@ -24,7 +24,7 @@
24
25
if use_setuptools:
26
try:
27
- from setuptools import setup
+ from setuptools import Extension, setup
28
from setuptools.command.install import install as _install
29
from setuptools.command.build_ext import build_ext as _build_ext
30
except ImportError:
@@ -232,7 +232,10 @@ def finalize_options(self):
232
url="https://github.com/symengine/symengine.py",
233
python_requires='>=3.9,<4',
234
zip_safe=False,
235
- packages=['symengine', 'symengine.lib', 'symengine.tests'],
+ ext_modules=[
236
+ Extension(name='symengine.lib', sources=[]),
237
+ Extension(name='symengine.tests', sources=[])],
238
+ packages=['symengine'],
239
cmdclass = cmdclass,
240
classifiers=[
241
'License :: OSI Approved :: MIT License',
0 commit comments