Metadata-Version: 2.1
Name: try_pub_pypi
Version: 0.0.2
Summary: A small example package
Home-page: https://github.com/seralekseenko/try_pub_pypi
Author: seroleksiienko
Author-email: seroleksiienko@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: numpy==1.26.4

[![Publish Python 🐍 distribution 📦 to PyPI and TestPyPI](https://github.com/seralekseenko/try_pub_pypi/actions/workflows/pub_on_pypi_org.yml/badge.svg)](https://github.com/seralekseenko/try_pub_pypi/actions/workflows/pub_on_pypi_org.yml)

[![Lint & Tests](https://github.com/seralekseenko/try_pub_pypi/actions/workflows/lint_test.yml/badge.svg)](https://github.com/seralekseenko/try_pub_pypi/actions/workflows/lint_test.yml)

# try_pub_pypi

Only test to automate publishing to pypi.org

### virtual python3 ENV

1. Create virtual ENV → `python3 -m venv .venv` # смотри conda (Anaconda)
2. Activate → `source .venv/bin/activate`
3. Check virt env → `echo $VIRTUAL_ENV` → should be non empty output
4. Deactivate → `deactivate` or reopen terminal session

### Requirements

- instal `pip install -r requirements.txt`
- save `pip freeze > requirements.txt`
- check to old requirements `pip list --outdated`
- upgrade some package `pip install -U package_name`

### Run tests

A simple way: `python3 -m unittest discover -s ./tests` or `pytest`
