Metadata-Version: 2.1
Name: first-pypi-package-DeepranjanG
Version: 0.0.1
Summary: its an implimentation of Perceptron
Home-page: https://github.com/DeepranjanG/first-pypi-package
Author: DeepranjanG
Author-email: kd082442@gmail.com
License: UNKNOWN
Project-URL: Bug Tracker, https://github.com/DeepranjanG/first-pypi-package/issues
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown

# first-pypi-package
first-pypi-package


## How to use this

```python
from oneNeuron.perceptron import Perceptron

## get X and y and then use below commands
model = Perceptron(eta=eta, epochs=epochs)
model.fit(X, y)
```

# Reference -
[official python docs](https://packaging.python.org/tutorials/packaging-projects/)

[github docs for github actions](https://docs.github.com/en/actions/guides/building-and-testing-python#publishing-to-package-registries)


