summaryrefslogtreecommitdiff
path: root/src/api/python/setup.py.in
diff options
context:
space:
mode:
authorMathias Preiner <mathias.preiner@gmail.com>2021-04-21 10:21:34 -0700
committerGitHub <noreply@github.com>2021-04-21 10:21:34 -0700
commitae5ee4b07dc3d3c792e7fe7f382ff490dd28aca4 (patch)
treea7c2ab8013f46dbea75fcd6e7da3fb83e2012b2f /src/api/python/setup.py.in
parent86aa9bc35ba9dc9a57913a2ffc71619c7657cc35 (diff)
Goodbye CVC4, hello cvc5! (#6371)
This commits changes the build system to cvc5 and removes the remaining occurrences of CVC4. It further cleans up outdated/unused scripts in contrib/.
Diffstat (limited to 'src/api/python/setup.py.in')
-rw-r--r--src/api/python/setup.py.in8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/api/python/setup.py.in b/src/api/python/setup.py.in
index 8919dd3f1..231f27c2a 100644
--- a/src/api/python/setup.py.in
+++ b/src/api/python/setup.py.in
@@ -35,9 +35,9 @@ class PyCVC5Install(install):
c.finalize_options()
c.run()
-setup(name='pycvc4',
+setup(name='pycvc5',
version='${CVC5_MAJOR}.${CVC5_MINOR}.${CVC5_RELEASE}',
- packages=['pycvc4'],
- package_dir={'pycvc4': '${CMAKE_CURRENT_BINARY_DIR}/pycvc4'},
- package_data={'pycvc4': ['pycvc4.so']},
+ packages=['pycvc5'],
+ package_dir={'pycvc5': '${CMAKE_CURRENT_BINARY_DIR}/pycvc5'},
+ package_data={'pycvc5': ['pycvc5.so']},
cmdclass={'install': PyCVC5Install})
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback