This repository serves as the template for Python projects at Ultralytics. It encapsulates best practices, standard configurations, and essential project structures, streamlining the initiation process for new Python projects. By leveraging this template, developers at Ultralytics can ensure consistency and adherence to quality standards across all Python-based software developments.
The repository is meticulously organized to offer intuitive navigation and a clear understanding of the project components:
src/
oryour_package_name/
: Contains the source code of the Python package, organized in modules and packages.tests/
: Dedicated to unit tests and integration tests, facilitating continuous testing practices.docs/
: (Optional) Houses project documentation, typically managed with tools like Sphinx.requirements.txt
orPipfile
: Lists all necessary Python package dependencies..gitignore
: Configured to exclude unnecessary files from Git tracking.LICENSE
: Specifies the open-source license under which the project is released..github/workflows/
: Contains GitHub Actions workflows for CI/CD processes..pre-commit-config.yaml
: (Optional) Pre-commit hooks configuration for maintaining code quality.Dockerfile
: (Optional) For containerizing the project environment.environment.yml
: (Optional, for Conda users) Manages Conda environment dependencies.setup.py
: (Optional, if using PyPI) Details for packaging and distributing the project.- Linting and formatting configuration files (like
.flake8
,.pylintrc
,pyproject.toml
).
your-project/
โ
โโโ your_package_name/
โ โโโ __init__.py
โ โโโ module1.py
โ โโโ module2.py
โ โโโ ...
โ
โโโ tests/
โ โโโ __init__.py
โ โโโ test_module1.py
โ โโโ ...
โ
โโโ docs/
โ โโโ ...
โ
โโโ pyproject.toml
โโโ README.md
The src/
or your_package_name/
directory is the heart of your project, containing the Python code that constitutes your package. This structure encourages clean imports and testing practices.
The tests/
directory is crucial for maintaining the reliability and robustness of your code. It should include comprehensive tests that cover various aspects of your package.
For projects requiring extensive documentation, the docs/
directory serves as the go-to place. It's typically set up with Sphinx for generating high-quality documentation.
To kickstart a new Python project with this template:
- Create Your New Repository: Use this template to generate a new repository for your project.
- Customize the Template: Tailor the template files like
requirements.txt
,.pre-commit-config.yaml
, and GitHub workflow YAMLs to suit your project's needs. - Develop Your Package: Begin adding your code into the
src/
oryour_package_name/
directory and corresponding tests in thetests/
directory. - Document Your Project: Update the README and, if necessary, add documentation to the
docs/
directory. - Continuous Integration: Leverage the pre-configured GitHub Actions for automated testing and other CI/CD processes.
For Ultralytics team members and contributors:
- Clone the template repository to get started on a new Python project.
- Update the
README.md
to reflect your project's specifics. - Remove or modify any optional components (like
Dockerfile
,environment.yml
) based on the project's requirements.
With this template, Ultralytics aims to foster a culture of excellence and uniformity in Python software development, ensuring that each project is built on a solid foundation of industry standards and organizational best practices.
Ultralytics thrives on community collaboration; we immensely value your involvement! We urge you to peruse our Contributing Guide for detailed insights on how you can participate. Don't forget to share your feedback with us by contributing to our Survey. A heartfelt thank you ๐ goes out to everyone who has already contributed!
Ultralytics presents two distinct licensing paths to accommodate a variety of scenarios:
- AGPL-3.0 License: This official OSI-approved open-source license is perfectly aligned with the goals of students, enthusiasts, and researchers who believe in the virtues of open collaboration and shared wisdom. Details are available in the LICENSE document.
- Enterprise License: Tailored for commercial deployment, this license authorizes the unfettered integration of Ultralytics software and AI models within commercial goods and services, without the copyleft stipulations of AGPL-3.0. Should your use case demand an enterprise solution, direct your inquiries to Ultralytics Licensing.
For bugs or feature suggestions pertaining to Ultralytics, please lodge an issue via GitHub Issues. You're also invited to participate in our Discord community to engage in discussions and seek advice!