Розроблення пакетів Python
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 <--- нові файли
|-- 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