Metadata-Version: 2.1
Name: simple-learn
Version: 0.0.5
Summary: A python package to simplify data modeling.
Home-page: https://github.com/skekre98/simple_learn
Author: Sharvil Kekre
Author-email: sharvildev@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3.6
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: numpy
Requires-Dist: sklearn (>=0.22)

# SimpleLearn

A python package to simplify data modeling.

## Contributing

There is a lot to do so contributions are really appreciated! This is a great project for early stage developers to work with.

To begin it is recommended starting with issues labelled [good first issue](https://github.com/skekre98/simple_learn/issues?q=is%3Aissue+is%3Aopen+label%3A%22good+first+issue%22).


How to get started:

1. Fork the simple_learn repo.
2. Create a new branch in you current repo from the 'main' branch with issue label.
3. 'Check out' the code with Git or [GitHub Desktop](https://desktop.github.com/)
4. Check [contributing.md](CONTRIBUTING.md)
5. Prior to pushing your changes, run the following command to format/lint your code(The CI pipeline will fail if standards are not met) followed by creating a Pull Request (PR) on simple_learn.
```bash
$ pre-commit run --all-files
```


