From 86a559f096acf64ea9335494b66a07afdfcb76e5 Mon Sep 17 00:00:00 2001 From: Aaron Voelker Date: Mon, 22 Jun 2020 12:16:11 -0400 Subject: [PATCH] Add deploy and manifest to .nengobones.yml --- .nengobones.yml | 3 +++ MANIFEST.in | 37 +++++++++++++++++++++++++++++++++++++ 2 files changed, 40 insertions(+) create mode 100644 MANIFEST.in diff --git a/.nengobones.yml b/.nengobones.yml index 87cad0e5..c0503579 100644 --- a/.nengobones.yml +++ b/.nengobones.yml @@ -11,6 +11,8 @@ contributing_rst: {} contributors_rst: {} +manifest_in: {} + setup_py: install_req: - nengolib>=0.5.1 @@ -49,5 +51,6 @@ travis_yml: ci_scripts: - template: static + - template: deploy codecov_yml: {} diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 00000000..79887354 --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1,37 @@ +# Automatically generated by nengo-bones, do not edit this file directly + +global-include *.py +global-include *.sh +global-include *.template +include *.rst + +# Include files for CI and recreating the source dist +include *.yml +include *.yaml +include *.toml +include MANIFEST.in +include .gitlint +include .pylintrc + +# Directories to include +graft docs + +# Subdirectories to exclude, if they exist +prune docs/_build +prune dist +prune .git +prune .github +prune .tox +prune .eggs +prune .ci + +# Exclude auto-generated files +recursive-exclude docs *.py + +# Patterns to exclude from any directory +global-exclude *.ipynb_checkpoints* +global-exclude *-checkpoint.ipynb + +# Exclude all bytecode +global-exclude *.pyc *.pyo *.pyd +