Plugins/UiExtensionPlugins/PipInterface/__init__.py

branch
maintenance
changeset 6826
c6dda2cbe081
parent 6764
d14ddbfbbd36
parent 6825
e659bb96cdfa
child 6827
14680839ad7a
equal deleted inserted replaced
6764:d14ddbfbbd36 6826:c6dda2cbe081
1 # -*- coding: utf-8 -*-
2
3 # Copyright (c) 2015 - 2019 Detlev Offenbach <detlev@die-offenbachs.de>
4 #
5
6 """
7 Package implementing the various pip dialogs and data.
8 """
9
10 from __future__ import unicode_literals
11
12 DefaultPyPiUrl = "https://pypi.org"
13 DefaultIndexUrlXml = DefaultPyPiUrl + "/pypi"
14 DefaultIndexUrlPip = DefaultPyPiUrl + "/simple"

eric ide

mercurial