summaryrefslogtreecommitdiff
path: root/tox/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'tox/__init__.py')
-rw-r--r--tox/__init__.py33
1 files changed, 0 insertions, 33 deletions
diff --git a/tox/__init__.py b/tox/__init__.py
deleted file mode 100644
index baf651b..0000000
--- a/tox/__init__.py
+++ /dev/null
@@ -1,33 +0,0 @@
-#
-__version__ = '2.4.0.dev1'
-
-from .hookspecs import hookspec, hookimpl # noqa
-
-
-class exception:
- class Error(Exception):
- def __str__(self):
- return "%s: %s" % (self.__class__.__name__, self.args[0])
-
- class ConfigError(Error):
- """ error in tox configuration. """
- class UnsupportedInterpreter(Error):
- "signals an unsupported Interpreter"
- class InterpreterNotFound(Error):
- "signals that an interpreter could not be found"
- class InvocationError(Error):
- """ an error while invoking a script. """
- class MissingFile(Error):
- """ an error while invoking a script. """
- class MissingDirectory(Error):
- """ a directory did not exist. """
- class MissingDependency(Error):
- """ a dependency could not be found or determined. """
- class MinVersionError(Error):
- """ the installed tox version is lower than requested minversion. """
-
- def __init__(self, message):
- self.message = message
- super(exception.MinVersionError, self).__init__(message)
-
-from tox.session import main as cmdline # noqa