開發 Python 套件
James Fulton
Climate informatics researcher
README 章節
README.md 檔案中README.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 <--- 新增檔案
|-- README.md <--- 加到頂層目錄
列出要包含在套件發佈中的額外檔案。
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 套件