Example #1
0
# (c) 2012-2016 Continuum Analytics, Inc. / http://continuum.io
# All Rights Reserved
#
# conda is distributed under the terms of the BSD 3-clause license.
# Consult LICENSE.txt or http://opensource.org/licenses/BSD-3-Clause.
"""OS-agnostic, system-level binary package manager."""
from __future__ import absolute_import, division, print_function

from auxlib.packaging import get_version

__all__ = [
    "__name__",
    "__version__",
    "__author__",
    "__email__",
    "__license__",
    "__copyright__",
    "__summary__",
    "__url__",
]

__name__ = "conda"
__version__ = get_version(__file__, __name__)
__author__ = "Continuum Analytics, Inc."
__email__ = "*****@*****.**"
__license__ = "BSD"
__summary__ = __doc__
__url__ = "https://github.com/conda/conda"
Example #2
0
 def test_get_most_recent_git_tag_no_repo(self):
     tag = get_version(os.getcwd())
     assert tag is None
Example #3
0
# (c) 2012-2016 Continuum Analytics, Inc. / http://continuum.io
# All Rights Reserved
#
# conda is distributed under the terms of the BSD 3-clause license.
# Consult LICENSE.txt or http://opensource.org/licenses/BSD-3-Clause.
"""OS-agnostic, system-level binary package manager."""
from __future__ import absolute_import, division, print_function

from auxlib.packaging import get_version

__all__ = [
    "__name__",
    "__version__",
    "__author__",
    "__email__",
    "__license__",
    "__copyright__",
    "__summary__",
    "__url__",
]

__name__ = "conda"
__version__ = get_version(__file__)
__author__ = "Continuum Analytics, Inc."
__email__ = "*****@*****.**"
__license__ = "BSD"
__summary__ = __doc__
__url__ = "https://github.com/conda/conda"
Example #4
0
 def test_get_most_recent_git_tag_no_repo(self):
     tag = get_version(os.getcwd())
     assert tag is None
Example #5
0
# (c) 2012-2016 Continuum Analytics, Inc. / http://continuum.io
# All Rights Reserved
#
# conda is distributed under the terms of the BSD 3-clause license.
# Consult LICENSE.txt or http://opensource.org/licenses/BSD-3-Clause.
"""OS-agnostic, system-level binary package manager."""
from __future__ import absolute_import, division, print_function

from auxlib.packaging import get_version

__all__ = [
    "__name__", "__version__", "__author__",
    "__email__", "__license__", "__copyright__",
    "__summary__", "__url__",
]


__name__ = "conda"
__version__ = get_version(__file__, __name__)
__author__ = "Continuum Analytics, Inc."
__email__ = "*****@*****.**"
__license__ = "BSD"
__summary__ = __doc__
__url__ = "https://github.com/conda/conda"
Example #6
0
# (c) 2012-2016 Continuum Analytics, Inc. / http://continuum.io
# All Rights Reserved
#
# conda is distributed under the terms of the BSD 3-clause license.
# Consult LICENSE.txt or http://opensource.org/licenses/BSD-3-Clause.
"""OS-agnostic, system-level binary package manager."""
from __future__ import absolute_import, division, print_function

from auxlib.packaging import get_version

__all__ = [
    "__name__", "__version__", "__author__",
    "__email__", "__license__", "__copyright__",
    "__summary__", "__url__",
]


__name__ = "conda"
__version__ = get_version(__file__)
__author__ = "Continuum Analytics, Inc."
__email__ = "*****@*****.**"
__license__ = "BSD"
__summary__ = __doc__
__url__ = "https://github.com/conda/conda"