⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 setup.py

📁 megahal is the conversation simulators conversing with a user in natural language. The program will
💻 PY
字号:
#!/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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -