-
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
105 changed files
with
18,222 additions
and
3,452 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 |
---|---|---|
@@ -1,52 +1,44 @@ | ||
{ | ||
"template": "https://github.com/wpk-nist-gov/cookiecutter-pypackage.git", | ||
"commit": "be1b9cec709f862f8de5132e517a42db90758f04", | ||
"checkout": "feature/markdown", | ||
"skip": [ | ||
"src/thermoextrap/__init__.py", | ||
"environment.yaml", | ||
"HISTORY.md", | ||
"AUTHORS.md", | ||
"MANIFEST.in", | ||
"README.md", | ||
"docs/spelling_wordlist.txt", | ||
"environment/dev-extras.yaml", | ||
"environment/docs-extras.yaml", | ||
"environment/test-extras.yaml", | ||
"docs/index.md", | ||
"docs/installation.md", | ||
".gitignore" | ||
], | ||
"context": { | ||
"cookiecutter": { | ||
"full_name": "William P. Krekelberg", | ||
"email": "[email protected]", | ||
"github_username": "usnistgov", | ||
"pypi_username": "wpk-nist", | ||
"conda_channel": "wpk-nist", | ||
"project_name": "thermoextrap", | ||
"project_slug": "thermoextrap", | ||
"_copy_without_render": [ | ||
"*.html", | ||
"docs/_templates/*.rst", | ||
"docs/_templates/autosummary/*.rst", | ||
"docs/_templates/autodocsumm/*.rst", | ||
"docs/_static/*", | ||
"docs/_static/css/*", | ||
"docs/_static/js/*" | ||
], | ||
"project_short_description": "Thermodynamic extrapolation", | ||
"version": "0.0.1", | ||
"use_pytest": "y", | ||
"use_pypi_deployment_with_travis": "n", | ||
"command_line_interface": "No command-line interface", | ||
"create_author_file": "y", | ||
"open_source_license": "NIST license", | ||
"sphinx_auto": "autosummary", | ||
"sphinx_use_autodocsumm": "y", | ||
"sphinx_theme": "sphinx_book_theme", | ||
"_template": "https://github.com/wpk-nist-gov/cookiecutter-pypackage.git" | ||
} | ||
}, | ||
"directory": null | ||
"template": "https://github.com/wpk-nist-gov/cookiecutter-pypackage.git", | ||
"commit": "cb20a32f67dadb4142be54898a87de1efdce6bd6", | ||
"checkout": "feature/markdown", | ||
"skip": [ | ||
"src/thermoextrap/__init__.py", | ||
"docs/examples/usage/demo.ipynb", | ||
"examples/usage/demo.ipynb", | ||
"docs/examples/example-usage.md" | ||
], | ||
"context": { | ||
"cookiecutter": { | ||
"full_name": "William P. Krekelberg", | ||
"email": "[email protected]", | ||
"github_username": "usnistgov", | ||
"pypi_username": "wpk-nist", | ||
"conda_channel": "wpk-nist", | ||
"project_name": "thermoextrap", | ||
"project_slug": "thermoextrap", | ||
"_copy_without_render": [ | ||
"*.html", | ||
"docs/_templates/*.rst", | ||
"docs/_templates/autosummary/*.rst", | ||
"docs/_templates/autodocsumm/*.rst", | ||
"docs/_static/css/*", | ||
"docs/_static/js/*", | ||
"changelog.d/templates/*", | ||
"changelog.d/templates/auto-changlog/*" | ||
], | ||
"project_short_description": "Thermodynamic extrapolation", | ||
"version": "0.0.1", | ||
"use_pytest": "y", | ||
"use_pypi_deployment_with_travis": "n", | ||
"command_line_interface": "No command-line interface", | ||
"create_author_file": "y", | ||
"open_source_license": "NIST license", | ||
"sphinx_auto": "autosummary", | ||
"sphinx_use_autodocsumm": "y", | ||
"sphinx_theme": "sphinx_book_theme", | ||
"_template": "https://github.com/wpk-nist-gov/cookiecutter-pypackage.git" | ||
} | ||
}, | ||
"directory": null | ||
} |
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,44 @@ | ||
# http://editorconfig.org | ||
|
||
root = true | ||
|
||
[*] | ||
indent_style = space | ||
indent_size = 4 | ||
trim_trailing_whitespace = true | ||
insert_final_newline = true | ||
charset = utf-8 | ||
end_of_line = lf | ||
|
||
[*.bat] | ||
indent_style = tab | ||
end_of_line = crlf | ||
|
||
[LICENSE] | ||
insert_final_newline = false | ||
|
||
[Makefile] | ||
indent_style = tab | ||
|
||
[*.mk] | ||
indent_style = tab | ||
|
||
[*.{yaml,yml}] | ||
indent_size = 2 | ||
|
||
[*.ini] | ||
indent_size = 4 | ||
|
||
[*.json] | ||
indent_size = 2 | ||
|
||
|
||
[*.txt] | ||
indent_size = 4 | ||
trim_trailing_whitespace = false | ||
|
||
|
||
[*.md] | ||
indent_size = 2 | ||
max_line_length = 80 | ||
trim_trailing_whitespace = false |
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,6 @@ | ||
# Example markdownlint configuration with all properties set to their default value | ||
|
||
# Default state for all rules | ||
default: true | ||
# disable rules? | ||
# MD026: false |
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 @@ | ||
proseWrap: "always" |
Oops, something went wrong.