1.上传至pip后,可以使用from x import x 或者import x
2.Python在编写setup.py时,如何才能把文件生成到bin目录下
使用pip instal xxx安装后,可以直接使用xxx命令执行
setup(
name = 'testfaith',
version = '0.01',
keywords = ('test'),
description = 'simple test package',
author = 'MyFaith',
author_email = 'faith0725@outlook.com',
package = find_packages(),
entry_points= {
'console_scripts': [
'testfaith = testfaith.main:main'
]
}
)
找一个大的开源项目的看一下不就可以了吗
例如scrapy的https://github.com/scrapy/scrapy/blob/master/setup.py