This project is designed to provide a robust application structure for Python development. It includes essential files for application logic, testing, and package management.
ATC
├── src
│ ├── __init__.py
│ └── main.py
├── tests
│ └── test_main.py
├── requirements.txt
├── setup.py
└── README.md
To install the required dependencies, run the following command:
pip install -r requirements.txt
To run the application, execute the following command:
python -m src.main
To run the tests, use the following command:
pytest tests/test_main.py
Contributions are welcome! Please open an issue or submit a pull request for any improvements or bug fixes.