@@ -475,6 +475,11 @@ export class WorkspaceTagsService implements IWorkspaceTagsService {
475
475
"workspace.py.requirements.star" : { "classification": "SystemMetaData", "purpose": "FeatureInsight", "isMeasurement": true },
476
476
"workspace.py.Pipfile" : { "classification": "SystemMetaData", "purpose": "FeatureInsight", "isMeasurement": true },
477
477
"workspace.py.conda" : { "classification": "SystemMetaData", "purpose": "FeatureInsight", "isMeasurement": true },
478
+ "workspace.py.setup": { "classification": "SystemMetaData", "purpose": "FeatureInsight", "isMeasurement": true },
479
+ "workspace.py.pyproject": { "classification": "SystemMetaData", "purpose": "FeatureInsight", "isMeasurement": true },
480
+ "workspace.py.manage": { "classification": "SystemMetaData", "purpose": "FeatureInsight", "isMeasurement": true },
481
+ "workspace.py.setupcfg": { "classification": "SystemMetaData", "purpose": "FeatureInsight", "isMeasurement": true },
482
+ "workspace.py.app": { "classification": "SystemMetaData", "purpose": "FeatureInsight", "isMeasurement": true },
478
483
"workspace.py.any-azure" : { "classification": "SystemMetaData", "purpose": "FeatureInsight", "isMeasurement": true },
479
484
"workspace.py.pulumi-azure" : { "classification": "SystemMetaData", "purpose": "FeatureInsight", "isMeasurement": true },
480
485
"workspace.py.azure" : { "classification": "SystemMetaData", "purpose": "FeatureInsight", "isMeasurement": true },
@@ -613,6 +618,11 @@ export class WorkspaceTagsService implements IWorkspaceTagsService {
613
618
tags [ 'workspace.py.requirements.star' ] = this . searchArray ( names , / ^ ( .* ) r e q u i r e m e n t s ( .* ) \. t x t $ / i) ;
614
619
tags [ 'workspace.py.Pipfile' ] = nameSet . has ( 'pipfile' ) ;
615
620
tags [ 'workspace.py.conda' ] = this . searchArray ( names , / ^ e n v i r o n m e n t ( \. y m l $ | \. y a m l $ ) / i) ;
621
+ tags [ 'workspace.py.setup' ] = nameSet . has ( 'setup.py' ) ;
622
+ tags [ 'workspace.py.manage' ] = nameSet . has ( 'manage.py' ) ;
623
+ tags [ 'workspace.py.setupcfg' ] = nameSet . has ( 'setup.cfg' ) ;
624
+ tags [ 'workspace.py.app' ] = nameSet . has ( 'app.py' ) ;
625
+ tags [ 'workspace.py.pyproject' ] = nameSet . has ( 'pyproject.toml' ) ;
616
626
617
627
const mainActivity = nameSet . has ( 'mainactivity.cs' ) || nameSet . has ( 'mainactivity.fs' ) ;
618
628
const appDelegate = nameSet . has ( 'appdelegate.cs' ) || nameSet . has ( 'appdelegate.fs' ) ;
0 commit comments