switch to src layout

This commit is contained in:
Ronny Pfannschmidt
2018-05-26 09:05:41 +02:00
parent ee6c54904b
commit eaa882f3d5
50 changed files with 10 additions and 5 deletions

8
src/_pytest/__init__.py Normal file
View File

@@ -0,0 +1,8 @@
__all__ = ["__version__"]
try:
from ._version import version as __version__
except ImportError:
# broken installation, we don't even try
# unknown only works because we do poor mans version compare
__version__ = "unknown"