作为软件工程师,我们经常发现自己在不同的模块和项目中重复使用代码。但让我们面对现实吧,这种重复带来了一个挑战:当我们需要调整或修复该代码时,我们必须在多个地方进行相同的更改。对于我们这些重视效率和自动化的人来说,解决方案很明确 - 创建一个可以在我们的项目中安装和使用的单独包。
然而,在处理机密代码时,我们不能简单地将包发布到像 PyPI 这样的公共存储库上。相反,我们需要将其部署到私有存储库,例如 GitHub 或 GitLab。这种方法使我们能够保持安全性,同时仍然受益于可重用包的便利性。
在本教程中,我们将指导您完成以下过程:
通过执行这些步骤,您将能够减少代码重复并简化项目中共享代码的维护。
注意:DRY 不仅仅代表“Don’t Repeat Yourself”——它也是一种生活方式的选择。
首先,让我们为 Python 包设置一个基本的项目结构:
my-package/ ├── my_package/ │ ├── __init__.py │ └── module1.py ├── setup.py ├── build.pipeline.yml ├── requirements.txt ├── .gitignore ├── README.md ├── MANIFEST.in └── LICENSE
让我们来剖析一下我们的私有 Python 包。每个文件和目录在使我们的包正常运行和可安装方面发挥着至关重要的作用:
让我们在包中创建一个简单的模块。在 my_package/module1.py 中:
my-package/ ├── my_package/ │ ├── __init__.py │ └── module1.py ├── setup.py ├── build.pipeline.yml ├── requirements.txt ├── .gitignore ├── README.md ├── MANIFEST.in └── LICENSE
在 my_package/__init__.py 中,我们将导入我们的模块:
class Hello: def __init__(self, name): self.name = name def greet(self): return f"Hello, {self.name}!"
setup.py 文件对于打包我们的项目至关重要。这是一个基本示例:
from .module1 import Hello
在我们的requirements.txt 文件中,我们包含了构建和分发包所需的依赖项:
from setuptools import setup, find_packages with open('requirements.txt') as f: requirements = f.read().splitlines() setup( name="my_package", version="0.1", include_package_data=True, python_requires='>=3.8', packages=find_packages(), setup_requires=['setuptools-git-versioning'], install_requires=requirements, author="Abdellah HALLOU", author_email="abdeallahhallou33@gmail.com", description="A short description of your package", long_description=open('README.md').read(), long_description_content_type="text/markdown", classifiers=[ "Programming Language :: Python :: 3.8", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", ], version_config={ "dirty_template": "{tag}", } )
安装要求。为了简单起见,我们将使用 Python 虚拟环境。
setuptools==69.2.0 wheel twine
构建我们的包:
python -m venv env source env/bin/activate # for linux and mac ./env/Scripts/activate # for windows pip install -r requirements.txt
要在本地安装我们的软件包以进行测试:
python setup.py sdist bdist_wheel
您可以使用 .gitignore 文件提交您的工作并忽略文件夹:
https://github.com/github/gitignore/blob/main/Python.gitignore
要发布包,首先在项目 my-package/ 的根目录下创建一个 build.pipeline.yml 文件并提交。部署将使用 twine 完成,这是我们之前安装的库:
my-package/ ├── my_package/ │ ├── __init__.py │ └── module1.py ├── setup.py ├── build.pipeline.yml ├── requirements.txt ├── .gitignore ├── README.md ├── MANIFEST.in └── LICENSE
如果您需要在模块安装中包含非 Python 文件,可以使用 MANIFEST.in 文件。此文件指定您的软件包分发中应包含哪些附加文件。
class Hello: def __init__(self, name): self.name = name def greet(self): return f"Hello, {self.name}!"
然后上传包:
from .module1 import Hello
创建访问令牌:
获得令牌后,请确保其安全,因为您将需要它来安装软件包。
在您的计算机上,您可以使用以下模板安装您的私有包:
from setuptools import setup, find_packages with open('requirements.txt') as f: requirements = f.read().splitlines() setup( name="my_package", version="0.1", include_package_data=True, python_requires='>=3.8', packages=find_packages(), setup_requires=['setuptools-git-versioning'], install_requires=requirements, author="Abdellah HALLOU", author_email="abdeallahhallou33@gmail.com", description="A short description of your package", long_description=open('README.md').read(), long_description_content_type="text/markdown", classifiers=[ "Programming Language :: Python :: 3.8", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", ], version_config={ "dirty_template": "{tag}", } )
干得好,你现在知道如何在 GitHub 上使用 Python 创建和部署自己的私有包了。
Github 存储库链接:https://github.com/ABDELLAH-Hallou/Private-Python-Package-Deployment
以上是在 GitHub 上创建并发布私有 Python 包的详细内容。更多信息请关注PHP中文网其他相关文章!