要使用Python的setup()
函数发布包,请按照以下步骤操作:
- 确保已安装setuptools和wheel库。如果尚未安装,可以使用以下命令安装:
pip install setuptools wheel
-
在项目根目录下创建一个名为
setup.py
的文件。这个文件将包含有关您的包的信息以及发布所需的配置。 -
编辑
setup.py
文件,添加以下内容并根据您的包进行相应的修改:
from setuptools import setup, find_packages setup( name="your-package-name", version="0.1", packages=find_packages(), install_requires=[ # 添加您的包所需的依赖项,例如: "numpy", "pandas", ], entry_points={ # 如果您的包包含可执行文件或命令行接口,请在此处定义它们,例如: "console_scripts": [ "your-command-name = your_package_name.main:main_function", ], }, author="Your Name", author_email="your.email@example.com", description="A short description of your package", long_description="A longer description of your package", long_description_content_type="text/markdown", url="https://github.com/yourusername/your-package-name", classifiers=[ "Programming Language :: Python :: 3", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", ], )
-
在项目根目录下创建一个名为
.gitignore
的文件,以排除不必要的文件,例如__pycache__
、.pyc
和*.pyo
等。 -
初始化Git仓库并提交更改:
git init git add . git commit -m "Initial commit"
-
创建一个PyPI帐户并登录:https://pypi.org/account/register/
-
安装twine库,以便将包发布到PyPI:
pip install twine
- 确保您已正确设置Git的用户名和电子邮件地址:
git config --global user.name "Your Name" git config --global user.email "your.email@example.com"
- 在项目根目录下运行以下命令,以构建并上传您的包到PyPI:
python setup.py sdist bdist_wheel twine upload dist/*
现在,您的包已成功发布到PyPI,可以通过以下命令安装和使用:
pip install your-package-name