@@ -16,8 +16,12 @@ const _initialToolData: Tool[] = [
1616 {
1717 features : [ 'install cli apps' , 'virtual environment management' ] ,
1818 name : 'pipx' ,
19- toolDescription :
20- 'pipx runs and installs cli tools in virtual environments. It focuses and improves on a specific use case handled by pip.' ,
19+ toolDescription : (
20+ < div >
21+ pipx runs and installs cli tools in virtual environments. It focuses on
22+ and improves on a specific use case handled by pip.
23+ </ div >
24+ ) ,
2125 useCases : [ 'Install cli tools to isolated environment' ] ,
2226 dependsOn : [ 'pip' , 'venv' ] ,
2327 } ,
@@ -266,6 +270,7 @@ const _initialToolData: Tool[] = [
266270 createdAt : '2015-09-13T00:00:00Z' ,
267271 primaryLanguage : { name : 'Python' } ,
268272 url : 'https://docs.python.org/3/library/venv.html' ,
273+ owner : 'CPython' ,
269274 } ,
270275 {
271276 name : 'Nuitka' ,
@@ -357,17 +362,31 @@ const _initialToolData: Tool[] = [
357362 toolDescription : (
358363 < div >
359364 < p >
360- pip-audit is a tool for scanning Python environments for packages
361- with known vulnerabilities. It uses the
365+ pip-audit is a tool for scanning Python environments for packages with
366+ known vulnerabilities. It uses the
362367 < a href = "https://github.com/pypa/advisory-database" >
363- Python Packaging Advisory Database</ a > via the PyPI JSON API as a
364- source of vulnerability reports.
368+ Python Packaging Advisory Database
369+ </ a > { ' ' }
370+ via the PyPI JSON API as a source of vulnerability reports.
365371 </ p >
366372 </ div >
367373 ) ,
368374 useCases : [ 'Audit Python packages for known vulnerabilities' ] ,
369375 dependsOn : [ 'pip' , 'venv' ] ,
370- }
376+ } ,
377+ {
378+ name : 'cibuildwheel' ,
379+ features : [ 'build packages' ] ,
380+ toolDescription : (
381+ < div >
382+ On your CI server, cibuildwheel builds and tests your wheels across all
383+ of your platforms (macOS, linux, windows). Supports GitHub Actions,
384+ Azure Pipelines, Travis CI, AppVeyor, CircleCI, and GitLab CI.
385+ </ div >
386+ ) ,
387+ useCases : [ ] ,
388+ dependsOn : [ ] ,
389+ } ,
371390] ;
372391_initialToolData . sort ( ( a , b ) => {
373392 return a . name . toLocaleLowerCase ( ) < b . name . toLocaleLowerCase ( ) ? - 1 : 1 ;
0 commit comments