Skip to content

Commit 0ca2a82

Browse files
committed
add conda (closes #5)
1 parent f58ee9d commit 0ca2a82

File tree

3 files changed

+17
-1
lines changed

3 files changed

+17
-1
lines changed

backend/githubData.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,10 @@ const tools = [
1111
name: "pip",
1212
owner: "pypa",
1313
},
14+
{
15+
name: "conda",
16+
owner: "conda",
17+
},
1418
{
1519
name: "flit",
1620
owner: "takluyver",
@@ -21,7 +25,7 @@ const tools = [
2125
},
2226
{
2327
name: "pdm",
24-
owner: "frontming",
28+
owner: "frostming",
2529
},
2630
{
2731
name: "python-build",

frontend/src/Types.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,8 @@ export type Feature =
4040
| 'dependency resolver'
4141
| 'manual virtual environment creation'
4242
| 'virtual environment management'
43+
| 'package manager'
44+
| 'ecosystem'
4345
| 'PEP-518'
4446
| 'PEP-517';
4547

@@ -57,6 +59,8 @@ export const features: Feature[] = [
5759
'dependency resolver',
5860
'manual virtual environment creation',
5961
'virtual environment management',
62+
'package manager',
63+
'ecosystem',
6064
'PEP-517',
6165
'PEP-518',
6266
].sort();

frontend/src/initialToolData.tsx

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,14 @@ const _initialToolData: Tool[] = [
2424
useCases: [],
2525
dependsOn: ['pip', 'venv'],
2626
},
27+
{
28+
features: ['package manager', 'ecosystem'],
29+
name: 'conda',
30+
toolDescription:
31+
'Conda is a cross-platform, language-agnostic binary package manager. It is the package manager used by Anaconda installations, but it may be used for other systems as well. Conda makes environments first-class citizens, making it easy to create independent environments even for C libraries.',
32+
useCases: [],
33+
dependsOn: [],
34+
},
2735
{
2836
features: ['build packages'],
2937
name: 'python-build',

0 commit comments

Comments
 (0)