Jose 40019f84f2
Some checks failed
Pylint / build (3.x) (push) Failing after 7s
ruff / build (push) Successful in 6s
OpenCommit Action / OpenCommit (push) Failing after 7s
Mark stale issues and pull requests / stale (push) Failing after 5s
Merge pull request 'dev' (#3) from dev into main
Reviewed-on: #3
2025-02-04 07:34:00 +01:00
2025-02-02 22:01:55 +01:00
2025-02-03 20:58:05 +01:00
2025-02-03 20:58:05 +01:00
2025-02-02 22:33:49 +01:00

python_template_repository

This is a template repository for Python projects. It includes basic files and directories such as setup.py, requirements.txt, and a README file. To use this template, you can clone the repository to your local machine using the following command: git clone https://repo.piave7.duckdns.org/Jose/python_template

Once you have cloned the repository, you can navigate into the project directory and start working on your Python project. You can install the required dependencies by running the following command:

pip install -r requirements.txt

You can also create a virtual environment for your project using the following command:

python -m venv venv

Once you have created the virtual environment, you can activate it using the appropriate command for your operating system. For example, on Windows, you can run the following command:

venv\Scripts\activate

On macOS and Linux, you can run the following command:

source venv/bin/activate

You can now start working on your Python project by editing the files in the src directory. Once you are done with your work, you can deactivate the virtual environment using the following command:

deactivate

To build the project, you can run the following command:

python setup.py sdist bdist_wheel

This will create a source distribution and a wheel distribution of your project. To install the project from the source distribution, you can run the following command:

pip install dist/python_template-0.1.0.tar.gz

Description
No description provided
Readme 54 KiB
Languages
Python 100%