设置Python 3.4包

时间:2015-05-29 09:14:04

标签: python python-3.x setuptools

我最近切换到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中没有运气。有什么想法吗?

0 个答案:

没有答案