Tworzenie pakietów w Pythonie
James Fulton
Climate informatics researcher
Sekcje pliku README
README.mdREADME.rstZawartość pliku README.md
`
Wygląd po renderowaniu
Zawartość pliku 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)
Wygląd po renderowaniu
mysklearn is a package for complete linear regression in python.
You can find out more about this package on DataCamp
Zawartość pliku 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
Wygląd po renderowaniu
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
Zawartość pliku 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
```
Wygląd po renderowaniu
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
Drzewo katalogów pakietu z podpakietami
mysklearn/
|-- mysklearn
| |-- __init__.py
| |-- preprocessing
| | |-- ...
| |-- regression
| | |-- ...
| |-- utils.py
|-- setup.py
|-- requirements.txt
|-- LICENSE <--- nowe pliki
|-- README.md <--- dodane do głównego katalogu
Zawiera listę dodatkowych plików do uwzględnienia w dystrybucji pakietu.
Zawartość pliku MANIFEST.in
include LICENSE
include README.md
mysklearn/
|-- mysklearn
| |-- __init__.py
| |-- preprocessing
| | |-- ...
| |-- regression
| | |-- ...
| |-- utils.py
|-- setup.py
|-- requirements.txt
|-- LICENSE
|-- README.md
|-- MANIFEST.in <---
Tworzenie pakietów w Pythonie