Developing Python Packages
James Fulton
Climate informatics researcher
README sections
README.md
fileREADME.rst
fileContents of README.md
`
What it looks like when rendered
Contents of 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)
What it looks like when rendered
mysklearn is a package for complete linear regression in python.
You can find out more about this package on DataCamp
Contents of 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
What it looks like when rendered
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
Contents of 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
```
What it looks like when rendered
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
Directory tree for package with subpackages
mysklearn/
|-- mysklearn
| |-- __init__.py
| |-- preprocessing
| | |-- ...
| |-- regression
| | |-- ...
| |-- utils.py
|-- setup.py
|-- requirements.txt
|-- LICENSE <--- new files
|-- README.md <--- added to top directory
Lists all the extra files to include in your package distribution.
Contents of 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