我最近切换到Python 3.我正在尝试创建一个简单的包,其工作方式与在Python 2.7中工作时一样。但是,由于某种原因,包看起来是空的。
setup(
name="test_py"
, version="0.1"
, description="'test_py' package"
, author=""
, author_email=""
, maintainer=""
, maintainer_email=""
, long_description="'test_py' package and extensions\n"
, packages=['test_py'
,'test_py.test_py'
,'test_py.func'
,'test_py.test']
, package_dir={'test_py.test_py':'test_py/test_py'}
, package_data={'test_py.test_py': c_libs}
)
其中test_py/test_py
包含C ++扩展库。
所有相关目录都有__init__.py个文件,内容如
from test_py import *
所有在Python 2.7中运行良好,但到目前为止在Python 3.4中没有运气。有什么想法吗?