Skip to content

Commit

Permalink
towards fixing compilation
Browse files Browse the repository at this point in the history
  • Loading branch information
marjan authored and marjan committed Dec 27, 2022
1 parent f8cc6df commit 40fe172
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@
------------------------------------------------------
"""

from setuptools import setup, Extension
from setuptools import setup
# from setuptools import Extension

_version = '0.2.0'

Expand Down Expand Up @@ -40,7 +41,8 @@
],
install_requires=requirements,
license='MIT',
description = 'A library for robust Gaussian fitting of geometric models in presence of outliers. ', # Give a short description about your library
description = 'A library for robust Gaussian fitting '\
+ 'of geometric models in presence of outliers. ', # Give a short description about your library
long_description_content_type = 'text/markdown',
long_description=readme,
include_package_data=True,
Expand All @@ -61,8 +63,8 @@
url='https://github.com/arsadri/RobustGaussianFittingLibrary',
version=_version,
zip_safe=False,
ext_modules=[Extension(name = 'RGFLib',
sources = ['RobustGaussianFittingLibrary/RGFLib.c'],
language = 'c',
extra_compile_args = ['-shared'])],
# ext_modules=[Extension(name = 'RGFLib',
# sources = ['RobustGaussianFittingLibrary/RGFLib.c'],
# language = 'c',
# extra_compile_args = ['-shared'])],
)

0 comments on commit 40fe172

Please sign in to comment.