- Secret Recipes of the Python Ninja
- Cody Jackson
- 132字
- 2021-06-25 22:14:44
Getting ready
Your project files need to be configured in the proper way so they are of use to other developers, and are listed properly on PyPI. The most important step of this process is setting up the setup.py file, which sits in the root of your project's directory.
setup.py contains configuration data for your project, particularly the setup() function, which defines the details of the project. It is also the command-line interface for running commands related to the packaging process.
A license (license.txt) should be included with the package. This file is important because, in some areas, a package without an explicit license cannot be legally used or distributed by anyone but the copyright holder. Including the license ensures both the creator and users are legally protected against copyright infringement issues.
- Advanced Machine Learning with Python
- Android項目開發入門教程
- Learning PostgreSQL
- 你必須知道的204個Visual C++開發問題
- C#應用程序設計教程
- Learning Laravel's Eloquent
- C++反匯編與逆向分析技術揭秘(第2版)
- Python Essentials
- Python開發基礎
- Node.js從入門到精通
- 計算機應用基礎(第二版)
- 大數據時代的企業升級之道(全3冊)
- Web前端測試與集成:Jasmine/Selenium/Protractor/Jenkins的最佳實踐
- Tkinter GUI Programming by Example
- Selenium Essentials