การพัฒนา Python Packages
James Fulton
Climate informatics researcher
ส่วนประกอบของ README
README.mdREADME.rstเนื้อหาใน README.md
`
ลักษณะเมื่อเรนเดอร์แล้ว
เนื้อหาใน README.md
# mysklearnmysklearn is a package for complete **linear regression** in Python.You can find out more about this package on [DataCamp](https://datacamp.com)
ลักษณะเมื่อเรนเดอร์แล้ว
mysklearn is a package for complete linear regression in python.
You can find out more about this package on DataCamp
เนื้อหาใน README.md
# mysklearnmysklearn is a package for complete **linear regression** in Python.You can find out more about this package on [DataCamp](https://datacamp.com)## Installation You can install this package using
ลักษณะเมื่อเรนเดอร์แล้ว
mysklearn is a package for complete linear regression in python.
You can find out more about this package on DataCamp
You can install this package using
เนื้อหาใน README.md
# mysklearn
mysklearn is a package for complete
**linear regression** in Python.
You can find out more about this package
on [DataCamp](https://datacamp.com)
## Installation
You can install this package using
```
pip install mysklearn
```
ลักษณะเมื่อเรนเดอร์แล้ว
mysklearn is a package for complete linear regression in python.
You can find out more about this package on DataCamp
You can install this package using
pip install mysklearn
โครงสร้างไดเรกทอรีของแพ็กเกจที่มีซับแพ็กเกจ
mysklearn/
|-- mysklearn
| |-- __init__.py
| |-- preprocessing
| | |-- ...
| |-- regression
| | |-- ...
| |-- utils.py
|-- setup.py
|-- requirements.txt
|-- LICENSE <--- new files
|-- README.md <--- added to top directory
ระบุไฟล์เพิ่มเติมทั้งหมดที่ต้องการรวมในการแจกจ่ายแพ็กเกจ
เนื้อหาของ MANIFEST.in
include LICENSE
include README.md
mysklearn/
|-- mysklearn
| |-- __init__.py
| |-- preprocessing
| | |-- ...
| |-- regression
| | |-- ...
| |-- utils.py
|-- setup.py
|-- requirements.txt
|-- LICENSE
|-- README.md
|-- MANIFEST.in <---
การพัฒนา Python Packages