Developing Python Packages
James Fulton
Climate informatics researcher
Sekce souboru README
README.mdREADME.rstObsah souboru README.md
`
Výsledný vzhled po vykreslení
Obsah souboru 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)
Výsledný vzhled po vykreslení
mysklearn is a package for complete linear regression in python.
You can find out more about this package on DataCamp
Obsah souboru 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
Výsledný vzhled po vykreslení
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
Obsah souboru 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
```
Výsledný vzhled po vykreslení
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
Adresářová struktura balíčku s podbalíčky
mysklearn/
|-- mysklearn
| |-- __init__.py
| |-- preprocessing
| | |-- ...
| |-- regression
| | |-- ...
| |-- utils.py
|-- setup.py
|-- requirements.txt
|-- LICENSE <--- nové soubory
|-- README.md <--- přidány do kořenového adresáře
Obsahuje seznam všech dodatečných souborů zahrnutých do distribuce balíčku.
Obsah souboru MANIFEST.in
include LICENSE
include README.md
mysklearn/
|-- mysklearn
| |-- __init__.py
| |-- preprocessing
| | |-- ...
| |-- regression
| | |-- ...
| |-- utils.py
|-- setup.py
|-- requirements.txt
|-- LICENSE
|-- README.md
|-- MANIFEST.in <---
Developing Python Packages