pypa-hatch/hatch/env/collectors/default.py

9 lines
243 B
Python

from .plugin.interface import EnvironmentCollectorInterface
class DefaultEnvironmentCollector(EnvironmentCollectorInterface):
PLUGIN_NAME = 'default'
def get_environment_config(self):
return {'default': {'type': 'virtual'}}