-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #7 from TUW-GEO/pyscaffold
Update pyscaffold
- Loading branch information
Showing
6 changed files
with
20 additions
and
231 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +0,0 @@ | ||
import pkg_resources | ||
|
||
try: | ||
__version__ = pkg_resources.get_distribution(__name__).version | ||
except: | ||
__version__ = 'unknown' | ||
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# Add requirements only needed for your unittests and during development here. | ||
# They will be installed automatically when running `python setup.py test`. | ||
# ATTENTION: Don't remove pytest-cov and pytest as they are needed. | ||
pytest-cov | ||
pytest |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
#!/usr/bin/env python | ||
# -*- coding: utf-8 -*- | ||
""" | ||
Dummy conftest.py for repurpose. | ||
If you don't know what this is for, just leave it empty. | ||
Read more about conftest.py under: | ||
https://pytest.org/latest/plugins.html | ||
""" | ||
from __future__ import print_function, absolute_import, division | ||
|
||
import pytest |