Metadata-Version: 2.1
Name: oneNeuron-pypi-martuzaiu
Version: 0.0.2
Summary: A simple perceptron program
Home-page: https://github.com/martuzaiu/oneNeuron_pypi
Author: martuzaiu
Author-email: martuza.cse@gmail.com
License: UNKNOWN
Project-URL: Bug Tracker, https://github.com/martuzaiu/oneNeuron_pypi/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
License-File: LICENSE
Requires-Dist: numpy
Requires-Dist: tqdm

# oneNeuron_pypi
oneNeuron_pypi

# How to use this
get X and y then follow the below command

```python
from oneNeuron.perceptron import Perceptron
model = Perceptron(eta=eta, epochs=epochs)
model.fit(X,y)
```



# COMMANDS


## Make directory
```bash
mkdir -p src/oneNeuron
```

## Git add commit and push
```bash
git add . && git commit -m "Command added" && git push origin main
```
## Create files
```bash
touch src/oneNeuron/__init__.py
```

# References
[Python Pachaging](https://packaging.python.org/tutorials/packaging-projects/)

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


