Metadata-Version: 2.1
Name: gyvatukas
Version: 14
Summary: See README.md
Home-page: https://github.com/pauliusbaulius/gyvatukas
Author: Paulius
Author-email: dev@paulius.xyz
Requires-Python: >=3.11,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Requires-Dist: bcrypt (>=4,<5)
Requires-Dist: beautifulsoup4 (>=4,<5)
Requires-Dist: diskcache (>=5,<6)
Requires-Dist: emval (>=0.1.5,<0.2.0)
Requires-Dist: httpx (>=0,<1)
Requires-Dist: platformdirs (>=4,<5)
Project-URL: Documentation, https://pauliusbaulius.github.io/gyvatukas/gyvatukas/
Project-URL: Repository, https://github.com/pauliusbaulius/gyvatukas
Description-Content-Type: text/markdown

# gyvatukas
collection of python utils and prototypes. feel free to open mrs and send hate mail to dev@paulius.xyz

## usage
`pip install gyvatukas` or `poetry add gyvatukas`
```python
import gyvatukas as g

tel = '+37060000000'
is_valid, clean_tel = g.validate_lt_tel_nr(tel)
print(is_valid, clean_tel)
```

## dev
1. New code (add new features to `__init__/__all__` if/when they are "prod" worthy)
2. Build docs
3. Increment version in pyproject.toml
4. Build package (commit package + pyproject.toml + docs (clean single build commit, since docs 
   are published from master and are source of truth for the latest pypi release))
5. `poetry publish`

