diff --git a/setup.py b/setup.py index 3c52464..d123b5f 100755 --- a/setup.py +++ b/setup.py @@ -12,14 +12,16 @@ else: ver = '0.0.0.dev0' -setup (name = 'jlr-dstc', - version = ver, - author = "SWIG Docs", - author_email = "ecoffey1@jaguarlandrover.com", - 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="ecoffey1@jaguarlandrover.com", + 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']) + ], + )