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 पैकेज विकसित करना