Metadata-Version: 2.4
Name: ikemurami
Version: 0.0.2
Summary: Defense against dependency confusion attacks
Project-URL: Homepage, https://github.com/IkeMurami/pypi-package
Project-URL: Issues, https://github.com/IkeMurami/pypi-package/issues
Author-email: Petrakov Oleg <petrakov.oleg@yandex.ru>
License-Expression: MIT
License-File: LICENSE
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.9
Description-Content-Type: text/markdown

# pypi-package

Defense against dependency confusion attacks

PyPI: https://pypi.org/project/ikemurami

## Install and run

```
python3 -m venv .venv
source .venv/bin/activate
python -m pip install "."
python -B examples/main.py
```

## Build & distribute

- Docs: https://packaging.python.org/en/latest/tutorials/packaging-projects/

- Build:

```
python -m pip install --upgrade build
python -m build
```

- Distribute:

```
python -m pip install --upgrade twine
python -m twine upload --repository pypi dist/*
```
