Metadata-Version: 2.1
Name: gyvatukas
Version: 12
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.2.1,<5.0.0)
Requires-Dist: beautifulsoup4 (>=4.12.3,<5.0.0)
Requires-Dist: diskcache (>=5.6.3,<6.0.0)
Requires-Dist: email-validator (>=2.2.0,<3.0.0)
Requires-Dist: httpx (>=0.28.0,<0.29.0)
Requires-Dist: platformdirs (>=4.3.6,<5.0.0)
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 mr's 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`

