setup.py
来自「megahal is the conversation simulators c」· Python 代码 · 共 16 行
PY
16 行
#!/usr/bin/pythonfrom distutils.core import setup, Extensionpymegahal = Extension("mh_python", ["python-interface.c", "megahal.c"])longdesc = """MegaHAL is a conversation simulator that can learn asyou talk to it. This module contains Python bindings for the library."""setup(name="megahal", version="9.0.3", author="David N. Welton", author_email="david@dedasys.com", url="http://www.megahal.net", license="GPL", description="Python bindings for MegaHAL", long_description=longdesc, ext_modules=[pymegahal])
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?