Skip to content

Commit

Permalink
first commit - empty project
Browse files Browse the repository at this point in the history
  • Loading branch information
clorton committed Sep 30, 2024
0 parents commit 301d0d2
Show file tree
Hide file tree
Showing 40 changed files with 1,521 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
[bumpversion]
current_version = 0.0.1
commit = True
tag = True

[bumpversion:file:setup.py]
search = version="{current_version}"
replace = version="{new_version}"

[bumpversion:file (badge):README.rst]
search = /v{current_version}.svg
replace = /v{new_version}.svg

[bumpversion:file (link):README.rst]
search = /v{current_version}...main
replace = /v{new_version}...main

[bumpversion:file:docs/conf.py]
search = version = release = "{current_version}"
replace = version = release = "{new_version}"

[bumpversion:file:src/laser_cholera/__init__.py]
search = __version__ = "{current_version}"
replace = __version__ = "{new_version}"

[bumpversion:file:.cookiecutterrc]
search = version: {current_version}
replace = version: {new_version}
61 changes: 61 additions & 0 deletions .cookiecutterrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
# This file exists so you can easily regenerate your project.
#
# `cookiepatcher` is a convenient shim around `cookiecutter`
# for regenerating projects (it will generate a .cookiecutterrc
# automatically for any template). To use it:
#
# pip install cookiepatcher
# cookiepatcher gh:ionelmc/cookiecutter-pylibrary laser-cholera
#
# See:
# https://pypi.org/project/cookiepatcher
#
# Alternatively, you can run:
#
# cookiecutter --overwrite-if-exists --config-file=laser-cholera/.cookiecutterrc gh:ionelmc/cookiecutter-pylibrary

default_context:
c_extension_optional: "yes"
c_extension_support: "yes"
codacy: "no"
codacy_projectid: "__codacy_projectid__"
codeclimate: "no"
codecov: "yes"
command_line_interface: "click"
command_line_interface_bin_name: "laser-cholera"
coveralls: "no"
distribution_name: "laser-cholera"
email: "[email protected]"
formatter_quote_style: "double"
full_name: "Christopher Lorton"
function_name: "compute"
github_actions: "yes"
github_actions_osx: "yes"
github_actions_windows: "yes"
license: "MIT license"
module_name: "core"
package_name: "laser_cholera"
pre_commit: "yes"
project_name: "LASER Cholera"
project_short_description: "LASIK - LASER based SImulation of Kolera"
pypi_badge: "yes"
pypi_disable_upload: "no"
release_date: "today"
repo_hosting: "github.com"
repo_hosting_domain: "github.com"
repo_main_branch: "main"
repo_name: "laser-cholera"
repo_username: "InstituteforDiseaseModeling"
scrutinizer: "no"
setup_py_uses_setuptools_scm: "no"
sphinx_docs: "yes"
sphinx_docs_hosting: "https://laser-cholera.readthedocs.io/"
sphinx_doctest: "yes"
sphinx_theme: "furo"
test_matrix_separate_coverage: "no"
tests_inside_package: "no"
version: "0.0.1"
version_manager: "bump2version"
website: "https://www.idmod.org"
year_from: "2024"
year_to: "2024"
16 changes: 16 additions & 0 deletions .coveragerc
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
[paths]
source =
src
*/site-packages

[run]
branch = true
source =
laser_cholera
tests
parallel = true

[report]
show_missing = true
precision = 2
omit = *migrations*
20 changes: 20 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# see https://editorconfig.org/
root = true

[*]
# Use Unix-style newlines for most files (except Windows files, see below).
end_of_line = lf
trim_trailing_whitespace = true
indent_style = space
insert_final_newline = true
indent_size = 4
charset = utf-8

[*.{bat,cmd,ps1}]
end_of_line = crlf

[*.{yml,yaml}]
indent_size = 2

[*.tsv]
indent_style = tab
Loading

0 comments on commit 301d0d2

Please sign in to comment.