Skip to content

Commit

Permalink
Merge pull request #5 from PDXostc/hotfix-broken-setup
Browse files Browse the repository at this point in the history
HOTFIX: Fix source file location
  • Loading branch information
JanderJLR authored Aug 15, 2019
2 parents db76e73 + a3d1832 commit 2202980
Showing 1 changed file with 13 additions and 11 deletions.
24 changes: 13 additions & 11 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,16 @@
else:
ver = '0.0.0.dev0'

setup (name = 'jlr-dstc',
version = ver,
author = "SWIG Docs",
author_email = "[email protected]",
url = "https://github.com/PDXostc/dstc",
description = """SWIG wrapper for DSTC.""",
py_modules = [ 'dstc', 'dstc_swig' ],
ext_modules = [
Extension('_dstc_swig', sources=['./src/dstc_swig_wrap.c',],libraries=['dstc', 'rmc'])
],
)
setup(name='python-dstc',
version=ver,
author="SWIG Docs",
author_email="[email protected]",
url="https://github.com/PDXostc/dstc_swig",
description="""SWIG wrapper for DSTC.""",
py_modules=['dstc', 'dstc_swig'],
ext_modules=[
Extension('_dstc_swig',
sources=['dstc_swig_wrap.c', ],
libraries=['dstc', 'rmc'])
],
)

0 comments on commit 2202980

Please sign in to comment.