simera 0.0.1a0__tar.gz

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.
@@ -0,0 +1,8 @@
1
+ Metadata-Version: 2.2
2
+ Name: simera
3
+ Version: 0.0.1a0
4
+ Summary: Supply Chain Simulation Tool
5
+ Author-email: "A. Blachnio" <blachnio.artur@gmail.com>
6
+ License: MIT
7
+ Requires-Python: >=3.6
8
+ Description-Content-Type: text/markdown
File without changes
@@ -0,0 +1,13 @@
1
+ [build-system]
2
+ requires = ["setuptools", "wheel"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "simera"
7
+ version = "0.0.1-alpha"
8
+ description = "Supply Chain Simulation Tool"
9
+ authors = [{name = "A. Blachnio", email = "blachnio.artur@gmail.com"}]
10
+ license = {text = "MIT"}
11
+ readme = "README.md"
12
+ requires-python = ">=3.6"
13
+ dependencies = []
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
File without changes
@@ -0,0 +1,17 @@
1
+ from pathlib import Path
2
+
3
+
4
+ class SimeraConfig:
5
+ def __init__(self, resources_path=None):
6
+ self.path = self._Path(resources_path)
7
+
8
+ class _Path:
9
+
10
+ def __init__(self, resources_path):
11
+ self.base_dir = Path().cwd()
12
+ self.resources = self.base_dir / 'simera_resources' if resources_path is None else resources_path
13
+ self.mapping = self.resources / 'mapping'
14
+ self.transport = self.resources / 'transport'
15
+ self.warehouse = self.resources / 'warehouse'
16
+
17
+ self.file_master_mapper = self.mappings / 'master_mapper.xlsb'
File without changes
@@ -0,0 +1,3 @@
1
+ def add_one(number):
2
+ print('executing function add_one', number)
3
+ return number + 1
File without changes
File without changes
@@ -0,0 +1,8 @@
1
+ Metadata-Version: 2.2
2
+ Name: simera
3
+ Version: 0.0.1a0
4
+ Summary: Supply Chain Simulation Tool
5
+ Author-email: "A. Blachnio" <blachnio.artur@gmail.com>
6
+ License: MIT
7
+ Requires-Python: >=3.6
8
+ Description-Content-Type: text/markdown
@@ -0,0 +1,12 @@
1
+ README.md
2
+ pyproject.toml
3
+ simera/__init__.py
4
+ simera/config.py
5
+ simera/mapping.py
6
+ simera/scenario.py
7
+ simera/transport.py
8
+ simera/warehouse.py
9
+ simera.egg-info/PKG-INFO
10
+ simera.egg-info/SOURCES.txt
11
+ simera.egg-info/dependency_links.txt
12
+ simera.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+ simera