Skip to content

Commit 40f1d6a

Browse files
author
TristanHehnen
committed
Relicense to MPL-2.0; bump version to 0.0.6
1 parent f71e2ed commit 40f1d6a

12 files changed

Lines changed: 156 additions & 344 deletions

File tree

LICENSE

Lines changed: 104 additions & 341 deletions
Large diffs are not rendered by default.

pyproject.toml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,15 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "firescipy"
7-
version = "0.0.5"
7+
version = "0.0.6"
88
description = "FireSciPy: Fundamental algorithms from the field of fire science, for computations with Python."
99
readme = "README.md"
1010
keywords = ["Fire Safety Engineering", "fire", "pyrolysis", "kinetics", "FDS"]
1111
requires-python = ">=3.9"
12-
license = { text = "CC-BY-4.0" } # adjust if you use another license
13-
license-files = ["LICEN[CS]E*"]
12+
license = { file = "LICEN[CS]E*" }
13+
classifiers = [
14+
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
15+
]
1416
authors = [
1517
{ name = "Tristan Hehnen", email = "you@example.com" },
1618
{ name = "Lukas Arnold", email = "you@example.com" }

src/firescipy/__init__.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
# This Source Code Form is subject to the terms of the Mozilla Public
2+
# License, v. 2.0. If a copy of the MPL was not distributed with this
3+
# file, You can obtain one at https://mozilla.org/MPL/2.0/.
4+
5+
16
from . import utils
27
from . import pyrolysis
38
from . import constants

src/firescipy/constants.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
# This Source Code Form is subject to the terms of the Mozilla Public
2+
# License, v. 2.0. If a copy of the MPL was not distributed with this
3+
# file, You can obtain one at https://mozilla.org/MPL/2.0/.
4+
5+
16
"""
27
Physical and chemical constants used throughout FireSciPy.
38
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,6 @@
1+
# This Source Code Form is subject to the terms of the Mozilla Public
2+
# License, v. 2.0. If a copy of the MPL was not distributed with this
3+
# file, You can obtain one at https://mozilla.org/MPL/2.0/.
4+
5+
16
from .design_fires import alpha_t_squared, simple_design_fire

src/firescipy/handcalculation/design_fires.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
# This Source Code Form is subject to the terms of the Mozilla Public
2+
# License, v. 2.0. If a copy of the MPL was not distributed with this
3+
# file, You can obtain one at https://mozilla.org/MPL/2.0/.
4+
5+
16
import numpy as np
27

38

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# This Source Code Form is subject to the terms of the Mozilla Public
2+
# License, v. 2.0. If a copy of the MPL was not distributed with this
3+
# file, You can obtain one at https://mozilla.org/MPL/2.0/.

src/firescipy/microscale/microscale.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
# This Source Code Form is subject to the terms of the Mozilla Public
2+
# License, v. 2.0. If a copy of the MPL was not distributed with this
3+
# file, You can obtain one at https://mozilla.org/MPL/2.0/.
4+
5+
16
import numpy as np
27

38

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
# This Source Code Form is subject to the terms of the Mozilla Public
2+
# License, v. 2.0. If a copy of the MPL was not distributed with this
3+
# file, You can obtain one at https://mozilla.org/MPL/2.0/.
4+
5+
16
from .kinetics import initialize_investigation_skeleton, add_isothermal_tga, add_constant_heating_rate_tga, combine_repetitions, differential_conversion, integral_conversion, compute_conversion, compute_conversion_levels, KAS_Ea, compute_Ea_KAS
27

38
from .modeling import create_linear_temp_program, reaction_rate, solve_kinetics, get_reaction_model

src/firescipy/pyrolysis/kinetics.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
# This Source Code Form is subject to the terms of the Mozilla Public
2+
# License, v. 2.0. If a copy of the MPL was not distributed with this
3+
# file, You can obtain one at https://mozilla.org/MPL/2.0/.
4+
5+
16
import warnings
27

38
import numpy as np

0 commit comments

Comments
 (0)