Metadata-Version: 2.1
Name: silcrow-utils
Version: 0.1.1
Summary: A package for logging timestamps and executing scripts.
Home-page: https://github.com/Silcrow/silcrow-utils
Author: Sangsan Prohmvitak
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
Requires-Dist: build==1.2.2.post1
Requires-Dist: certifi==2024.8.30
Requires-Dist: charset-normalizer==3.4.0
Requires-Dist: docutils==0.21.2
Requires-Dist: idna==3.10
Requires-Dist: importlib_metadata==8.5.0
Requires-Dist: jaraco.classes==3.4.0
Requires-Dist: jaraco.context==6.0.1
Requires-Dist: jaraco.functools==4.1.0
Requires-Dist: keyring==25.5.0
Requires-Dist: markdown-it-py==3.0.0
Requires-Dist: mdurl==0.1.2
Requires-Dist: more-itertools==10.5.0
Requires-Dist: nh3==0.2.18
Requires-Dist: packaging==24.2
Requires-Dist: pkginfo==1.10.0
Requires-Dist: Pygments==2.18.0
Requires-Dist: pyproject_hooks==1.2.0
Requires-Dist: readme_renderer==44.0
Requires-Dist: requests==2.32.3
Requires-Dist: requests-toolbelt==1.0.0
Requires-Dist: rfc3986==2.0.0
Requires-Dist: rich==13.9.4
Requires-Dist: setuptools==75.6.0
Requires-Dist: twine==5.1.1
Requires-Dist: urllib3==2.2.3
Requires-Dist: wheel==0.45.1
Requires-Dist: zipp==3.21.0

# silcrow-utils
A package for housing all my personalized python functions and classes, made available via pip install.

# To User
```
# main.py
from silcrow_utils.module1 import hello_Bubu

if __name__ == '__main__':
    result = hello_Bubu()
    print(result)
```

# To Dev

## Each Release

Don't forget to increment the version number, then:
```zsh
pip install build twine
python -m build
twine upload dist/*
```

## Might do
- [ ] use poetry instead of requirements.txt, edit setup.py accordingly. 
