PyTDLM 0.1.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
TDLM/__init__.py ADDED
@@ -0,0 +1,24 @@
1
+ """
2
+ TDLM: Trip Distribution Law Models Library
3
+
4
+ A Python library for simulating trip distribution using various gravity models
5
+ and spatial interaction laws.
6
+
7
+ Author: Maxime Lenormand (2015)
8
+ Converted to library format with enhanced parallel processing support
9
+ """
10
+
11
+ from . import tdlm as tdlm
12
+ from .tdlm import run_law_model, gof, TDLMError
13
+
14
+ __version__ = "0.1.0"
15
+ __author__ = "Maxime Lenormand"
16
+ __email__ = "maxime.lenormand@inrae.fr"
17
+ __license__ = "GPL-3.0"
18
+
19
+ __all__ = [
20
+ "tdlm",
21
+ "run_law_model",
22
+ "gof",
23
+ "TDLMError"
24
+ ]