我尝试安装模块并成功完成。但是在安装它并在点子列表上看到它之后,出于某种原因我无法运行它。每次执行py文件时都会弹出一个记事本。这是我的setup.py:
try:
from setuptools import setup except ImportError:
from distutils.core import setup
config = {
'description': 'My Project',
'author': 'My Name',
'url': 'URL to get it at.',
'download_url': 'Where to download it',
'author_email': 'My email',
'version': '0.1',
'install_requires': ['nose'],
'packages': ['try2'],
'scripts': ['bin/try2.py'],
'name': 'try2' }
setup(**config)