generated from delameter/skeleton-python3
-
Notifications
You must be signed in to change notification settings - Fork 0
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
14 changed files
with
553 additions
and
139 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 +1,3 @@ | ||
VERSION=0.0.0 | ||
PYPI_USERNAME=__token__ | ||
PYPI_PASSWORD= #api token for primary repo | ||
PYPI_PASSWORD_DEV= #api token for dev repo | ||
HOST_DEFAULT_PYTHON=/usr/bin/python3.10 | ||
PIPX_DEFAULT_PYTHON=/usr/bin/python3.10 | ||
VERSION=0.1.0 | ||
HATCH_INDEX_USER=__token__ | ||
HATCH_INDEX_AUTH= #api token for primary repo |
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 |
---|---|---|
|
@@ -7,3 +7,5 @@ dist-dev | |
venv | ||
.coverage | ||
docs/_build | ||
coverage | ||
.hatch |
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
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,19 @@ | ||
# ============================================================================== | ||
# es7s/pysuncalc [Library for sun timings calculations] | ||
# (c) 2023. A. Shavykin <0.delameter@gmail.com> | ||
# Licensed under MIT License | ||
# ============================================================================== | ||
""" file responsible for doctest running and custom shared fixtures """ | ||
|
||
from doctest import ELLIPSIS | ||
|
||
from sybil import Sybil | ||
from sybil.parsers.codeblock import PythonCodeBlockParser | ||
from sybil.parsers.doctest import DocTestParser | ||
|
||
pytest_plugins = [] | ||
|
||
pytest_collect_file = Sybil( | ||
parsers=[DocTestParser(optionflags=ELLIPSIS), PythonCodeBlockParser()], | ||
patterns=["*.rst", "*.py"], | ||
).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
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
Oops, something went wrong.