Skip to content

Commit

Permalink
Clean up after copier
Browse files Browse the repository at this point in the history
  • Loading branch information
znicholls committed Sep 13, 2024
1 parent 3d2e77c commit be4636d
Show file tree
Hide file tree
Showing 8 changed files with 3,658 additions and 79 deletions.
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,10 +1,16 @@
# Files generated while running examples
*.h5

# Notebooks
*.ipynb

# Auto-generated docs and helper files
docs/api/*
!docs/api/.gitkeep

# pdm stuff
.pdm-python

# Databases
*.db

Expand Down
31 changes: 27 additions & 4 deletions LICENCE
Original file line number Diff line number Diff line change
@@ -1,5 +1,28 @@
To be decided.
BSD 3-Clause License

We can recommend an open-source licence.
See some options here: https://opensource.org/licenses
If in doubt, we often use BSD 3-Clause.
Copyright (c) 2024, contributors to https://github.com/openscm/OpenSCM-Calibration

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:

1. Redistributions of source code must retain the above copyright notice, this
list of conditions and the following disclaimer.

2. Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.

3. Neither the name of the copyright holder nor the names of its
contributors may be used to endorse or promote products derived from
this software without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28 changes: 0 additions & 28 deletions LICENSE

This file was deleted.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ Some suggested options:
and we won't reply to any issues
-->

- prototype: the project is just starting up and the code is all prototype
- development: the project is actively being worked on

<!--- --8<-- [end:description] -->

Expand Down
3,607 changes: 3,607 additions & 0 deletions pdm.lock

Large diffs are not rendered by default.

18 changes: 17 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
[project]
name = "openscm-calibration"
version = "0.1.0a1"
version = "0.5.1a1"
description = "Calibration tools for simple climate models (with potential for applications elsewhere)"
authors = [
{ name = "Zebedee Nicholls", email = "zebedee.nicholls@climate-energy-college.org" },
]
requires-python = ">=3.9"
dependencies = [
"pandas",
"attrs",
"pint",
]
readme = "README.md"

Expand All @@ -28,10 +30,24 @@ build-backend = "pdm.backend"
[project.optional-dependencies]
plots = [
"matplotlib>=3.7.1",
"corner~=2.0",
"seaborn~=0.13",
]
notebooks = [
"jupyterlab>=4.2.0",
"jupytext>=1.16.3",
"emcwrap~=0.2",
"multiprocess~=0.70",
"scmdata~=0.17",
"openscm-units~=0.6",
"tqdm~=4.66",
"h5py~=3.11",
"ipywidgets~=8.1",
"more-itertools~=10.5",
]
tests = [
"emcee~=3.1",
"multiprocess~=0.70",
]

[tool.pdm.dev-dependencies]
Expand Down
34 changes: 0 additions & 34 deletions src/openscm_calibration/operations.py

This file was deleted.

11 changes: 0 additions & 11 deletions tests/unit/test_operations.py

This file was deleted.

0 comments on commit be4636d

Please sign in to comment.