2018-08-03 03:15:25 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-05-17 12:27:30 -04:00
|
|
|
module BlobViewer
|
|
|
|
class RequirementsTxt < DependencyManager
|
|
|
|
include Static
|
|
|
|
|
|
|
|
self.file_types = %i(requirements_txt)
|
|
|
|
|
|
|
|
def manager_name
|
|
|
|
'pip'
|
|
|
|
end
|
|
|
|
|
|
|
|
def manager_url
|
|
|
|
'https://pip.pypa.io/'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|