-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
18 additions
and
60 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
[mypy] | ||
ignore_missing_imports = True | ||
strict_optional = False | ||
allow_redefinition = True | ||
show_error_context = False | ||
show_column_numbers = True |
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 |
---|---|---|
|
@@ -3,3 +3,6 @@ requires = ["setuptools", "wheel"] | |
|
||
[tool.black] | ||
line-length = 100 | ||
|
||
[tool.pytest.ini_options] | ||
addopts = "-ra -v" |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[metadata] | ||
name = findssh | ||
version = 1.5.0 | ||
version = 1.4.1 | ||
author = Michael Hirsch, Ph.D. | ||
author_email = [email protected] | ||
url = https://github.com/scivision/findssh | ||
|
@@ -57,43 +57,3 @@ lint = | |
flake8-builtins | ||
flake8-blind-except | ||
mypy | ||
|
||
|
||
[flake8] | ||
max-line-length = 132 | ||
exclude = .git,__pycache__,.eggs/,doc/,docs/,build/,dist/,archive/ | ||
per-file-ignores = | ||
__init__.py:F401 | ||
|
||
[mypy] | ||
ignore_missing_imports = True | ||
strict_optional = False | ||
allow_redefinition = True | ||
show_error_context = False | ||
show_column_numbers = True | ||
|
||
[tool:pytest] | ||
addopts = -ra -v | ||
|
||
[coverage:run] | ||
cover_pylib = false | ||
omit = | ||
/home/travis/virtualenv/* | ||
*/site-packages/* | ||
*/bin/* | ||
|
||
[coverage:report] | ||
exclude_lines = | ||
pragma: no cover | ||
def __repr__ | ||
except RuntimeError | ||
except NotImplementedError | ||
except ImportError | ||
except FileNotFoundError | ||
except CalledProcessError | ||
raise AssertionError | ||
raise NotImplementedError | ||
logging.warning | ||
logging.error | ||
logging.critical | ||
if __name__ == .__main__.: |
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,4 +1,8 @@ | ||
#!/usr/bin/env python | ||
from setuptools import setup | ||
#!/usr/bin/env python3 | ||
import site | ||
import setuptools | ||
|
||
setup() | ||
# PEP517 workaround | ||
site.ENABLE_USER_SITE = True | ||
|
||
setuptools.setup() |
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