python Python打包文件(setup.py)示例

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python Python打包文件(setup.py)示例相关的知识,希望对你有一定的参考价值。

from setuptools import setup, find_packages

setup(
    name='awesome',
    version='0.0.1',
    description='Awesome tools.',
    author='w',
    author_email='w@w.py',
    url='https://bitbucket.org/w/awesome',
    packages=find_packages(exclude=['contrib', 'docs', 'tests']),
    install_requires=[
        'SQLAlchemy~=1.1.9',
        'psycopg2~=2.7.1',
        'marshmallow~=2.13.4',
        'marshmallow-sqlalchemy~=0.13.1',
    ],
    entry_points={
        'console_scripts': [
            'awesome-x = tools.x:main',
        ],
    },
)

以上是关于python Python打包文件(setup.py)示例的主要内容,如果未能解决你的问题,请参考以下文章

打包的 python .app 文件崩溃,但打包的 python .sh 文件工作正常

python程序打包成exe文件

Python打包EXE文件

Python打包

python打包的只给别人dist文件夹下的

python桌面应用(pyinstaller打包多个py文件)