1. Construction 1. Prepare htpasswd.txt file The file contains the username and password for verification when uploading the package to the warehouse.
2. Start the container
3. Set up nginx reverse proxy cat /usr/local/nginx/conf/exten/pypi.conf upstream pypi { server 127.0.0.1:8080; } server { listen 80; server_name pypi.local.me; location / { proxy_pass_header Server; proxy_set_header Host $http_host; proxy_redirect off; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Scheme $scheme; proxy_pass http://pypi; } } 2. Use 1. Create a test project # Create a project directory mkdir -p linode_example/linode_example # Create setup.py cat linode_example/setup.py from setuptools import setup setup( name='linode_example', packages=['linode_example'], #Directory after uploading to the warehouse, such as http://pypi.local.me/linode_example description = 'Hello world enterprise edition', version='0.1', # version number url='http://github.com/example/linode_example', author='Linode', keywords=['pip','linode','example'] ) # The content of this file is for explanatory purposes only. You can set it according to your own package. # Create the __init__.py main program cat linode_example/linode_example/__init__.py def hello_word(): print("hello world") #Package and upload python3.7 setup.py sdist #Package. After execution, there will be a tarball in the dist directory twine upload --repository-url http://pypi.local.me dist/* #Username and password are required when uploading: admin/admin123 2. Use the package uploaded to the warehouse pip install -i http://pypi.local.me --trusted-host pypi.local.me linode_example Packing Notes: 1. The directory structure of all projects that need to be packaged in the git repository must be consistent to facilitate automated integration of Jenkinsfile; 2. The setup.py files of all projects that need to be packaged must be located in the project root directory; 3. Python uses a unified version, and the version of each project needs to be fixed to facilitate iteration. The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM. You may also be interested in:
|
<<: Summary of 10 amazing tricks of Element-UI
>>: Q&A: Differences between XML and HTML
Copy code The code is as follows: @charset "...
The effect of this function is similar to vue的pro...
The 404 problem occurs in the Tomcat test. The pr...
This article shares the installation tutorial of ...
Table of contents 1. Official Documentation 2. Cr...
Table of contents 1. Operation of js integer 2. R...
Achieve results Implementation Code html <div ...
In HTML, the <img> tag is used to define an...
1. Postgres database backup in Docker Order: dock...
Use nginx to configure the separation of PC site ...
Table of contents Uninstall and install samba Cre...
Copy code The code is as follows: <html> &l...
Table of contents Introduction Uses of closures C...
Table of contents 1. Optional Chaining 2. Null va...
In the vue scaffolding, we can see that in the ne...