Abilian Development Tools (`abilian-devtools` or `adt`)
=======================================================
Abilian Development Tools (ADT) is a curated collection of Python development tools that includes formatters, testing frameworks, style checkers, type checkers, and supply chain audit tools. By adding `abilian-devtools = '*'` to your project's `requirements.in` or `pyproject.toml`, you can access over 40+ curated projects and plugins.
Proper configuration and usage in your project is still required.
Additionally, the package provides a command-line interface (CLI) called adt to help users get started with various development tasks such as running tests, security audits, and code formatting.
ADT was developped at [Abilian](https://abilian.com/) as a tool to help manage dozens of Python projects (open source or not). We hope it can be useful to others too.
What this is?
-------------
This is a curated, and opiniated, collection of best-of-breed Python development tools:
- Formatters (`black`, `isort`, `docformatter`)
- Testing frameworks (`pytest` and friends, `nox`)
- Style checkers (`ruff`, `flake8` and friends)
- Type checkers (`mypy`, `pyright`)
- Supply chain audit (`pip-audit`, `safety`, `reuse`, `vulture`, `deptry`)
- And more.
Obviously, all the credit goes to the creators and maintainers of these wonderful projects. You have all our gratitude!
Usage
-----
Instead of having to track all the 40+ projects and plugins we have curated, you just need to add `abilian-devtools = '*'` in your project's `requirements.in` or `pyproject.toml`.
You still need to properly configure and call them in your own projects.
For example configuration, see, for instance, <https://github.com/abilian/nua> (`Makefile`, `pyproject.toml`, `setup.cfg`, `tasks.py`, `noxfile.py`...).
CLI helper
----------
As a bonus, we're providing a CLI called `adt` which can help you get started:
```
$ adt
adt (0.5.x)
Usage:
adt <command> [options] [arguments]
Options:
-V Show version and exit
-d Enable debug mode
-v Increase verbosity
Available commands:
all Run everything (linters and tests).
audit Run security audit.
bump-version Bump version in pyproject.toml, commit & apply tag.
check Run checker/linters on specified files or directories.
clean Cleanup cruft.
cruft Run cruft audit.
format Format code in specified files or directories.
help-make Helper to generate the `make help` message.
test Run tests.
```
Why this?
---------
[We](https://abilian.com/) have created Abilian DevTools to help us maintain [our own projects](https://github.com/abilian/), and we thought it could be useful to others.
Here are some of the reasons why we have created this project:
- **Streamlined Tool Collection**: Abilian Devtools brings together a wide range of Python development tools in a single, curated package. This allows developers to focus on their work without spending time searching for and integrating individual tools.
- **Consistency**: By using a curated set of best-of-breed tools, our team can achieve a consistent level of code quality, style, and security across their projects.
- **Simplified Dependency Management**: Instead of managing individual dependencies for each tool, developers only need to add abilian-devtools to their project's `requirements.in` or `pyproject.toml`. This makes it easier to maintain and update dependencies over time.
- **Easy-to-use CLI**: The `adt` command-line utility simplifies common development tasks such as running tests, code formatting, and security audits. This can save time and effort, especially for those new to these tools.
- **Up-to-date Toolset**: Abilian Devtools aims to provide an up-to-date collection of tools, ensuring that developers have access to the latest features and improvements without having to manually track and update each tool.
Roadmap
-------
Here are some ideas for future improvements:
- **Support for additional tools**: for instance, tools that deal with changelogs (via [Conventional Commits](https://www.conventionalcommits.org/)), versioning, documentation...
- **Monorepo support**: Better support for monorepos.
- **Customization**: The curated nature of Abilian Devtools means that it comes with a predefined set of tools. Your project may require additional or alternative tools, or different settings. ADT could help managing (and updating) settings according to your own tastes and needs.
- **Generating configuration and supporting files**: Currently our projects are generated from a template by third-party tools ([Cruft](https://pypi.org/project/cruft/) or [Cookiecutter](https://pypi.org/project/cookiecutter/), using [this template](https://github.com/abilian/cookiecutter-abilian-python)). ADT could help generating configuration files for the various tools (`pyproject.toml`, `setup.cfg`, `noxfile.py`, `Makefile`, `tasks.py`...).
- **Updating configuration and supporting files**: As tools and best practices evolves, and for long-running projects, configuration need to be adapted over time, which can become quite time-consuming, specially when you are working on many small projects (or monorepos). Tools like [Cruft](https://pypi.org/project/cruft/) or [Medikit](https://python-medikit.github.io/)) can help, but in our experience are too fragile. ADT could help with this.
- **CI/CD**: ADT could help with CI/CD integration.
Discussion
----------
- [On GitHub](https://github.com/abilian/abilian-devtools/discussions) (evergreen)
- [On Reddit](https://www.reddit.com/r/Python/comments/136d7yd/abilian_development_tools_a_curated_collection_of/) (May 2023)
- [On AFPY Forum](https://discuss.afpy.org/t/abilian-development-tools-est-une-collection-doutils-de-developpement-python-qui-comprend-des-formateurs-des-frameworks-de-tests-des-verificateurs-de-style-des-verificateurs-de-type-et-des-outils-daudit-de-la-chaine-dapprovisionnement-logicielle/1548) (May 2023, in French)
References
----------
[This presentation from 2017](https://speakerdeck.com/sfermigier/python-quality-engineering-a-tour-of-best-practices) was given at the Paris Open Source Summit (POSS). Many tools have evolved or appeared since then, but the general principles are still valid.
[This presentation from 2005](https://speakerdeck.com/sfermigier/python-best-practices-rmll-2005) was given (in French) at the "Rencontres Mondiales du Logiciel Libre" in Bordeaux. It's obviously outdated, but kept for nostalgic reasons ;)
Raw data
{
"_id": null,
"home_page": null,
"name": "abilian-devtools",
"maintainer": null,
"docs_url": null,
"requires_python": "<4.0,>=3.10",
"maintainer_email": null,
"keywords": "linting, qa, security, supply_chain, testing",
"author": null,
"author_email": "Stefane Fermigier <sf@abilian.com>",
"download_url": "https://files.pythonhosted.org/packages/da/87/9be7156fce9fb671f5ee9d7ad1bb562f787be5f6efc8988f01373e4e5d3e/abilian_devtools-0.7.4.tar.gz",
"platform": null,
"description": "Abilian Development Tools (`abilian-devtools` or `adt`)\n=======================================================\n\nAbilian Development Tools (ADT) is a curated collection of Python development tools that includes formatters, testing frameworks, style checkers, type checkers, and supply chain audit tools. By adding `abilian-devtools = '*'` to your project's `requirements.in` or `pyproject.toml`, you can access over 40+ curated projects and plugins.\nProper configuration and usage in your project is still required.\nAdditionally, the package provides a command-line interface (CLI) called adt to help users get started with various development tasks such as running tests, security audits, and code formatting.\nADT was developped at [Abilian](https://abilian.com/) as a tool to help manage dozens of Python projects (open source or not). We hope it can be useful to others too.\n\n\nWhat this is?\n-------------\n\nThis is a curated, and opiniated, collection of best-of-breed Python development tools:\n\n- Formatters (`black`, `isort`, `docformatter`)\n- Testing frameworks (`pytest` and friends, `nox`)\n- Style checkers (`ruff`, `flake8` and friends)\n- Type checkers (`mypy`, `pyright`)\n- Supply chain audit (`pip-audit`, `safety`, `reuse`, `vulture`, `deptry`)\n- And more.\n\nObviously, all the credit goes to the creators and maintainers of these wonderful projects. You have all our gratitude!\n\n\nUsage\n-----\n\nInstead of having to track all the 40+ projects and plugins we have curated, you just need to add `abilian-devtools = '*'` in your project's `requirements.in` or `pyproject.toml`.\n\nYou still need to properly configure and call them in your own projects.\n\nFor example configuration, see, for instance, <https://github.com/abilian/nua> (`Makefile`, `pyproject.toml`, `setup.cfg`, `tasks.py`, `noxfile.py`...).\n\n\nCLI helper\n----------\n\nAs a bonus, we're providing a CLI called `adt` which can help you get started:\n\n```\n$ adt\nadt (0.5.x)\n\nUsage:\n adt <command> [options] [arguments]\n\nOptions:\n -V Show version and exit\n -d Enable debug mode\n -v Increase verbosity\n\nAvailable commands:\n all Run everything (linters and tests).\n audit Run security audit.\n bump-version Bump version in pyproject.toml, commit & apply tag.\n check Run checker/linters on specified files or directories.\n clean Cleanup cruft.\n cruft Run cruft audit.\n format Format code in specified files or directories.\n help-make Helper to generate the `make help` message.\n test Run tests.\n```\n\n\nWhy this?\n---------\n\n[We](https://abilian.com/) have created Abilian DevTools to help us maintain [our own projects](https://github.com/abilian/), and we thought it could be useful to others.\n\nHere are some of the reasons why we have created this project:\n\n- **Streamlined Tool Collection**: Abilian Devtools brings together a wide range of Python development tools in a single, curated package. This allows developers to focus on their work without spending time searching for and integrating individual tools.\n\n- **Consistency**: By using a curated set of best-of-breed tools, our team can achieve a consistent level of code quality, style, and security across their projects.\n\n- **Simplified Dependency Management**: Instead of managing individual dependencies for each tool, developers only need to add abilian-devtools to their project's `requirements.in` or `pyproject.toml`. This makes it easier to maintain and update dependencies over time.\n\n- **Easy-to-use CLI**: The `adt` command-line utility simplifies common development tasks such as running tests, code formatting, and security audits. This can save time and effort, especially for those new to these tools.\n\n- **Up-to-date Toolset**: Abilian Devtools aims to provide an up-to-date collection of tools, ensuring that developers have access to the latest features and improvements without having to manually track and update each tool.\n\n\nRoadmap\n-------\n\nHere are some ideas for future improvements:\n\n- **Support for additional tools**: for instance, tools that deal with changelogs (via [Conventional Commits](https://www.conventionalcommits.org/)), versioning, documentation...\n\n- **Monorepo support**: Better support for monorepos.\n\n- **Customization**: The curated nature of Abilian Devtools means that it comes with a predefined set of tools. Your project may require additional or alternative tools, or different settings. ADT could help managing (and updating) settings according to your own tastes and needs.\n\n- **Generating configuration and supporting files**: Currently our projects are generated from a template by third-party tools ([Cruft](https://pypi.org/project/cruft/) or [Cookiecutter](https://pypi.org/project/cookiecutter/), using [this template](https://github.com/abilian/cookiecutter-abilian-python)). ADT could help generating configuration files for the various tools (`pyproject.toml`, `setup.cfg`, `noxfile.py`, `Makefile`, `tasks.py`...).\n\n- **Updating configuration and supporting files**: As tools and best practices evolves, and for long-running projects, configuration need to be adapted over time, which can become quite time-consuming, specially when you are working on many small projects (or monorepos). Tools like [Cruft](https://pypi.org/project/cruft/) or [Medikit](https://python-medikit.github.io/)) can help, but in our experience are too fragile. ADT could help with this.\n\n- **CI/CD**: ADT could help with CI/CD integration.\n\nDiscussion\n----------\n\n- [On GitHub](https://github.com/abilian/abilian-devtools/discussions) (evergreen)\n- [On Reddit](https://www.reddit.com/r/Python/comments/136d7yd/abilian_development_tools_a_curated_collection_of/) (May 2023)\n- [On AFPY Forum](https://discuss.afpy.org/t/abilian-development-tools-est-une-collection-doutils-de-developpement-python-qui-comprend-des-formateurs-des-frameworks-de-tests-des-verificateurs-de-style-des-verificateurs-de-type-et-des-outils-daudit-de-la-chaine-dapprovisionnement-logicielle/1548) (May 2023, in French)\n\nReferences\n----------\n\n[This presentation from 2017](https://speakerdeck.com/sfermigier/python-quality-engineering-a-tour-of-best-practices) was given at the Paris Open Source Summit (POSS). Many tools have evolved or appeared since then, but the general principles are still valid.\n\n[This presentation from 2005](https://speakerdeck.com/sfermigier/python-best-practices-rmll-2005) was given (in French) at the \"Rencontres Mondiales du Logiciel Libre\" in Bordeaux. It's obviously outdated, but kept for nostalgic reasons ;)\n",
"bugtrack_url": null,
"license": "MIT",
"summary": "A curated set of dependencies for quality software development",
"version": "0.7.4",
"project_urls": {
"Repository": "https://github.com/abilian/abilian-devtools"
},
"split_keywords": [
"linting",
" qa",
" security",
" supply_chain",
" testing"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "a4eb2544c4c60788de0106532ff1b0c277b6e8add795f7951125fc9e1d289263",
"md5": "5160e5a0bdf09a8815d17c94e8220fa3",
"sha256": "980a69836b735272e3d39531dddd2901a99e0c79e198dd9297813e7aea081f01"
},
"downloads": -1,
"filename": "abilian_devtools-0.7.4-py3-none-any.whl",
"has_sig": false,
"md5_digest": "5160e5a0bdf09a8815d17c94e8220fa3",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": "<4.0,>=3.10",
"size": 18567,
"upload_time": "2024-11-19T10:43:47",
"upload_time_iso_8601": "2024-11-19T10:43:47.114275Z",
"url": "https://files.pythonhosted.org/packages/a4/eb/2544c4c60788de0106532ff1b0c277b6e8add795f7951125fc9e1d289263/abilian_devtools-0.7.4-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "da879be7156fce9fb671f5ee9d7ad1bb562f787be5f6efc8988f01373e4e5d3e",
"md5": "589ebb2b70d1abf9fdf710bfe781e3ad",
"sha256": "c65e6f3dca2eda22f8b137d16b3d25a5713f2f47d23f9105acf9d729b2364b71"
},
"downloads": -1,
"filename": "abilian_devtools-0.7.4.tar.gz",
"has_sig": false,
"md5_digest": "589ebb2b70d1abf9fdf710bfe781e3ad",
"packagetype": "sdist",
"python_version": "source",
"requires_python": "<4.0,>=3.10",
"size": 125193,
"upload_time": "2024-11-19T10:43:48",
"upload_time_iso_8601": "2024-11-19T10:43:48.836817Z",
"url": "https://files.pythonhosted.org/packages/da/87/9be7156fce9fb671f5ee9d7ad1bb562f787be5f6efc8988f01373e4e5d3e/abilian_devtools-0.7.4.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-11-19 10:43:48",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "abilian",
"github_project": "abilian-devtools",
"travis_ci": false,
"coveralls": false,
"github_actions": false,
"tox": true,
"lcname": "abilian-devtools"
}