Metadata-Version: 2.1
Name: python3-utilities
Version: 0.0.1
Summary: An utility library for python3
Home-page: https://github.com/ohidurbappy/python3-utilities
Author: Ohidur Rahman Bappy
Author-email: ohidurbappy+python3.utilities@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.5
Description-Content-Type: text/markdown

## Python3 Utilities

Project Homepage: https://github.com/ohidurbappy/python3-utilities

An utility library for python3 that saves time by avoiding to write repetitive codes.

### Usage







### How to build


**Update Setuptools and wheel**
```bash
python3 -m pip install --user --upgrade setuptools wheel
```

**Now run this command from the same directory where setup.py is located:**
```bash
python3 setup.py sdist bdist_wheel
```

**This command should output a lot of text and once completed should generate two files in the dist directory:**

```
dist/
  example_pkg_YOUR_USERNAME_HERE-0.0.1-py3-none-any.whl
  example_pkg_YOUR_USERNAME_HERE-0.0.1.tar.gz

```

For updating [See Here](https://packaging.python.org/tutorials/packaging-projects/#uploading-the-distribution-archives)

