@@ -475,6 +475,11 @@ export class WorkspaceTagsService implements IWorkspaceTagsService {
475475 "workspace.py.requirements.star" : { "classification": "SystemMetaData", "purpose": "FeatureInsight", "isMeasurement": true },
476476 "workspace.py.Pipfile" : { "classification": "SystemMetaData", "purpose": "FeatureInsight", "isMeasurement": true },
477477 "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 },
478483 "workspace.py.any-azure" : { "classification": "SystemMetaData", "purpose": "FeatureInsight", "isMeasurement": true },
479484 "workspace.py.pulumi-azure" : { "classification": "SystemMetaData", "purpose": "FeatureInsight", "isMeasurement": true },
480485 "workspace.py.azure" : { "classification": "SystemMetaData", "purpose": "FeatureInsight", "isMeasurement": true },
@@ -613,6 +618,11 @@ export class WorkspaceTagsService implements IWorkspaceTagsService {
613618 tags [ 'workspace.py.requirements.star' ] = this . searchArray ( names , / ^ ( .* ) r e q u i r e m e n t s ( .* ) \. t x t $ / i) ;
614619 tags [ 'workspace.py.Pipfile' ] = nameSet . has ( 'pipfile' ) ;
615620 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' ) ;
616626
617627 const mainActivity = nameSet . has ( 'mainactivity.cs' ) || nameSet . has ( 'mainactivity.fs' ) ;
618628 const appDelegate = nameSet . has ( 'appdelegate.cs' ) || nameSet . has ( 'appdelegate.fs' ) ;
0 commit comments