Metadata-Version: 2.1
Name: core-https
Version: 0.0.0
Summary: Project description...
Author-email: Alejandro Cora González <alek.cora.glez@gmail.com>
Maintainer: Alejandro Cora González
License: MIT
Project-URL: Homepage, https://gitlab.com/bytecode-solutions/templates/blueprint-python-library
Classifier: License :: OSI Approved :: MIT License
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Programming Language :: Python :: 3
Classifier: Intended Audience :: Developers
Classifier: Topic :: Utilities
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Provides-Extra: test
Requires-Dist: click==8.1.7; extra == "test"
Requires-Dist: coverage==7.3.4; extra == "test"
Requires-Dist: environs==10.0.0; extra == "test"

# project-name

_______________________________________________________________________________

Project description...

### Create and activate virtual environment.

```commandline
pip install --upgrade pip virtualenv
virtualenv --python=python3.11 .venv
source .venv/bin/activate
```

### Install required libraries.

```commandline
pip install '.[tests]'
```

### Check tests and coverage...

```commandline
python manage.py test
python manage.py coverage
```
