kmclab 0.1.0__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.
kmclab-0.1.0/PKG-INFO ADDED
@@ -0,0 +1,49 @@
1
+ Metadata-Version: 2.4
2
+ Name: kmclab
3
+ Version: 0.1.0
4
+ Summary: Hex and square lattice KMC classes.
5
+ Author: Shirin Asadi
6
+ License: MIT
7
+ Requires-Python: >=3.9
8
+ Description-Content-Type: text/markdown
9
+
10
+ # kmclab
11
+
12
+ A lightweight Python package for lattice-based kinetic Monte Carlo (KMC) utilities.
13
+ Currently includes simple hexagonal and square lattice KMC classes.
14
+
15
+ ## Installation
16
+
17
+ Clone the repository and install in editable mode:
18
+
19
+ ```bash
20
+ git clone https://github.com/shirinasadix/kmclab.git
21
+ cd kmclab
22
+ pip install -e .
23
+ ```
24
+
25
+ ## Usage
26
+
27
+ ```from kmclab import hex_kmc, square_kmc
28
+
29
+ hex_model = hex_kmc(...)
30
+ sq_model = square_kmc(...)
31
+ ```
32
+
33
+ ## Package Structure
34
+
35
+ kmclab/
36
+ ├── src/
37
+ │ └── kmclab/
38
+ │ ├── hex.py
39
+ │ ├── square.py
40
+ │ └── __init__.py
41
+ ├── tests/
42
+ ├── pyproject.toml
43
+ └── README.md
44
+
45
+ ## License
46
+
47
+ ```
48
+ XXX
49
+ ```
kmclab-0.1.0/README.md ADDED
@@ -0,0 +1,40 @@
1
+ # kmclab
2
+
3
+ A lightweight Python package for lattice-based kinetic Monte Carlo (KMC) utilities.
4
+ Currently includes simple hexagonal and square lattice KMC classes.
5
+
6
+ ## Installation
7
+
8
+ Clone the repository and install in editable mode:
9
+
10
+ ```bash
11
+ git clone https://github.com/shirinasadix/kmclab.git
12
+ cd kmclab
13
+ pip install -e .
14
+ ```
15
+
16
+ ## Usage
17
+
18
+ ```from kmclab import hex_kmc, square_kmc
19
+
20
+ hex_model = hex_kmc(...)
21
+ sq_model = square_kmc(...)
22
+ ```
23
+
24
+ ## Package Structure
25
+
26
+ kmclab/
27
+ ├── src/
28
+ │ └── kmclab/
29
+ │ ├── hex.py
30
+ │ ├── square.py
31
+ │ └── __init__.py
32
+ ├── tests/
33
+ ├── pyproject.toml
34
+ └── README.md
35
+
36
+ ## License
37
+
38
+ ```
39
+ XXX
40
+ ```
@@ -0,0 +1,19 @@
1
+ [build-system]
2
+ requires = ["setuptools>=68", "wheel"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "kmclab"
7
+ version = "0.1.0"
8
+ description = "Hex and square lattice KMC classes."
9
+ readme = "README.md"
10
+ requires-python = ">=3.9"
11
+ authors = [{name = "Shirin Asadi"}]
12
+ license = {text = "MIT"}
13
+ dependencies = []
14
+
15
+ [tool.setuptools]
16
+ package-dir = {"" = "src"}
17
+
18
+ [tool.setuptools.packages.find]
19
+ where = ["src"]
kmclab-0.1.0/setup.cfg ADDED
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,5 @@
1
+ from .hex import hex_kmc
2
+ from .square import square_kmc
3
+
4
+ __all__ = ["hex_kmc", "square_kmc"]
5
+ __version__ = "0.1.0"