Metadata-Version: 2.1
Name: example-pkg-trdlo
Version: 0.0.3
Summary: Example package based on packaging python tutorials
Home-page: https://gitlab.com/avnovoselov/python-package-example
Author: Anatoliy Novoselov
Author-email: avnovoselov@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown

# python-package-example

Install using `pip`
```shell
pip install example-pkg-trdlo
```

Usage example
```python
from example_pkg.pretty_code import PrettyCode

pretty_code = PrettyCode(6)

pretty_code.mirror()          # 408804
pretty_code.half_and_random() # 666252
pretty_code.sequence()        # 345678
pretty_code.two_sequence()    # 876321
pretty_code.simplest()        # 444444
pretty_code.random()          # 286183
```

---
## Alternative installation method
Install using `git+ssh` URI schema
```shell
pip install git+ssh://git@gitlab.com/avnovoselov/python-package-example.git
```

Install using `https` URI schema
```shell
pip install https://gitlab.com/avnovoselov/python-package-example.git
```
---
# Update build
After run will prompt username and password.
```shell
python3 -m build
python3 -m twine upload --repository pypi dist/*
```
---
## Links

* [Packaging Python Projects](https://packaging.python.org/tutorials/packaging-projects/)
* [Awesome .gitignore](https://gist.github.com/GhostofGoes/94580e76cd251972b15b4821c8a06f59)



