Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions backend/githubData.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,10 @@ const tools = [
name: "poetry",
owner: "python-poetry",
},
{
name: "hatch",
owner: "ofek",
},
{
name: "pipenv",
owner: "pypa",
Expand Down
13 changes: 13 additions & 0 deletions frontend/src/initialToolData.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,19 @@ const _initialToolData: Tool[] = [
dependsOn: ['pip', 'virtualenv'],
name: 'poetry',
},
{
features: [
'publish packages',
'build packages',
'application deployment',
'task automation',
'virtual environment management',
],
toolDescription: `Hatch is a tool for managing the entire lifecycle of a project including creation, versioning, building, environment management, and publishing. Its plugin system allows for easily extending functionality.`,
useCases: [],
dependsOn: ['pip', 'virtualenv'],
name: 'hatch',
},
{
features: [
'virtual environment management',
Expand Down