Metadata-Version: 2.1
Name: pyrgo
Version: 0.2.4
Project-URL: Documentation, https://github.com/Tomperez98/pyrgo#readme
Project-URL: Issues, https://github.com/Tomperez98/pyrgo/issues
Project-URL: Source, https://github.com/Tomperez98/pyrgo
Author-email: Tomas Perez Alvarez <tomasperezalvarez@gmail.com>
License-File: LICENSE
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Programming Language :: Rust
Requires-Python: >=3.7
Requires-Dist: black
Requires-Dist: build
Requires-Dist: click
Requires-Dist: mkdocs-material
Requires-Dist: mypy
Requires-Dist: pip-tools
Requires-Dist: pytest
Requires-Dist: result
Requires-Dist: ruff
Requires-Dist: tomli
Requires-Dist: tomlkit
Description-Content-Type: text/markdown

# pyrgo

Python project manager inspired in [Cargo](https://doc.rust-lang.org/cargo/).

`Pyrgo` does not reinvent the wheel. It's just a unified API that leverages popular libraries to improve your development experience.

- Testing:
  - [pytest](https://docs.pytest.org/en/7.3.x/)
- Code formatting:
  - [ruff](https://beta.ruff.rs/docs/)
  - [black](https://black.readthedocs.io/en/stable/usage_and_configuration/the_basics.html)
- Code checking:
  - [ruff](https://beta.ruff.rs/docs/)
  - [mypy](https://mypy.readthedocs.io/en/stable/config_file.html)
- Artifacts building:
  - [build](https://pypa-build.readthedocs.io/en/stable/)
- Package management:
  - [pip-tools](https://pip-tools.readthedocs.io/en/latest/)
- Code documentation:
  - [mkdocs-material](https://squidfunk.github.io/mkdocs-material/)

All behind a unified API.

```bash
pyrgo -h

# Usage: pyrgo [OPTIONS] COMMAND [ARGS]...

#   Pyrgo. Python package manager.

# Options:
#   --version   Show the version and exit.
#   -h, --help  Show this message and exit.

# Commands:
#   add     Add dependencies to a pyproject.toml manifest file and install.
#   build   Build project.
#   check   Analyze the current package with `ruff` and `mypy`.
#   clean   Remove artifacts that pyrgo has generated in the past.
#   docs    Document you project.
#   fmt     Format all files of the current project using `black` and `ruff`.
#   init    Create a new pyrgo project in an existing directory.
#   lock    Lock dependencies using `piptools`.
#   new     Create a new pyrgo project.
#   remove  Remove dependencies from the manifest file.
#   sync    Synchronize virtual environment with requirements.txt.
#   test    Execute tests using `pytest`.
#   venv    Create project virtual environment.
```