kmclab 0.1.0__tar.gz → 0.1.4__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 → kmclab-0.1.4}/PKG-INFO +16 -2
- {kmclab-0.1.0 → kmclab-0.1.4}/README.md +12 -1
- {kmclab-0.1.0 → kmclab-0.1.4}/pyproject.toml +6 -2
- {kmclab-0.1.0 → kmclab-0.1.4}/src/kmclab/hex.py +1 -1
- {kmclab-0.1.0 → kmclab-0.1.4}/src/kmclab/square.py +1 -1
- {kmclab-0.1.0 → kmclab-0.1.4}/src/kmclab.egg-info/PKG-INFO +16 -2
- {kmclab-0.1.0 → kmclab-0.1.4}/src/kmclab.egg-info/SOURCES.txt +1 -0
- kmclab-0.1.4/src/kmclab.egg-info/requires.txt +3 -0
- {kmclab-0.1.0 → kmclab-0.1.4}/setup.cfg +0 -0
- {kmclab-0.1.0 → kmclab-0.1.4}/src/kmclab/__init__.py +0 -0
- {kmclab-0.1.0 → kmclab-0.1.4}/src/kmclab.egg-info/dependency_links.txt +0 -0
- {kmclab-0.1.0 → kmclab-0.1.4}/src/kmclab.egg-info/top_level.txt +0 -0
|
@@ -1,11 +1,14 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: kmclab
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.4
|
|
4
4
|
Summary: Hex and square lattice KMC classes.
|
|
5
5
|
Author: Shirin Asadi
|
|
6
6
|
License: MIT
|
|
7
7
|
Requires-Python: >=3.9
|
|
8
8
|
Description-Content-Type: text/markdown
|
|
9
|
+
Requires-Dist: numpy>=1.21
|
|
10
|
+
Requires-Dist: matplotlib>=3.5
|
|
11
|
+
Requires-Dist: scipy>=1.8
|
|
9
12
|
|
|
10
13
|
# kmclab
|
|
11
14
|
|
|
@@ -14,7 +17,17 @@ Currently includes simple hexagonal and square lattice KMC classes.
|
|
|
14
17
|
|
|
15
18
|
## Installation
|
|
16
19
|
|
|
17
|
-
|
|
20
|
+
Install using pip
|
|
21
|
+
```
|
|
22
|
+
pip install kmclab
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
To upgrade to the latest version
|
|
26
|
+
```
|
|
27
|
+
pip install -U kmclab
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
Or you may clone the repository and install in editable mode:
|
|
18
31
|
|
|
19
32
|
```bash
|
|
20
33
|
git clone https://github.com/shirinasadix/kmclab.git
|
|
@@ -47,3 +60,4 @@ kmclab/
|
|
|
47
60
|
```
|
|
48
61
|
XXX
|
|
49
62
|
```
|
|
63
|
+
|
|
@@ -5,7 +5,17 @@ Currently includes simple hexagonal and square lattice KMC classes.
|
|
|
5
5
|
|
|
6
6
|
## Installation
|
|
7
7
|
|
|
8
|
-
|
|
8
|
+
Install using pip
|
|
9
|
+
```
|
|
10
|
+
pip install kmclab
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
To upgrade to the latest version
|
|
14
|
+
```
|
|
15
|
+
pip install -U kmclab
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
Or you may clone the repository and install in editable mode:
|
|
9
19
|
|
|
10
20
|
```bash
|
|
11
21
|
git clone https://github.com/shirinasadix/kmclab.git
|
|
@@ -38,3 +48,4 @@ kmclab/
|
|
|
38
48
|
```
|
|
39
49
|
XXX
|
|
40
50
|
```
|
|
51
|
+
|
|
@@ -4,13 +4,17 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "kmclab"
|
|
7
|
-
version = "0.1.
|
|
7
|
+
version = "0.1.4"
|
|
8
8
|
description = "Hex and square lattice KMC classes."
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
requires-python = ">=3.9"
|
|
11
11
|
authors = [{name = "Shirin Asadi"}]
|
|
12
12
|
license = {text = "MIT"}
|
|
13
|
-
dependencies = [
|
|
13
|
+
dependencies = [
|
|
14
|
+
"numpy>=1.21",
|
|
15
|
+
"matplotlib>=3.5",
|
|
16
|
+
"scipy>=1.8",
|
|
17
|
+
]
|
|
14
18
|
|
|
15
19
|
[tool.setuptools]
|
|
16
20
|
package-dir = {"" = "src"}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
from __future__ import annotations
|
|
1
2
|
import numpy as np
|
|
2
3
|
from matplotlib.animation import FuncAnimation, PillowWriter
|
|
3
4
|
import matplotlib.cm as cm
|
|
@@ -5,7 +6,6 @@ from numpy.polynomial.polynomial import Polynomial
|
|
|
5
6
|
import matplotlib.pyplot as plt
|
|
6
7
|
import matplotlib.patches as patches
|
|
7
8
|
from scipy.stats import linregress
|
|
8
|
-
from __future__ import annotations
|
|
9
9
|
|
|
10
10
|
|
|
11
11
|
class hex_kmc:
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
from __future__ import annotations
|
|
1
2
|
import numpy as np
|
|
2
3
|
from matplotlib.animation import FuncAnimation, PillowWriter
|
|
3
4
|
import matplotlib.cm as cm
|
|
@@ -5,7 +6,6 @@ from numpy.polynomial.polynomial import Polynomial
|
|
|
5
6
|
import matplotlib.pyplot as plt
|
|
6
7
|
import matplotlib.patches as patches
|
|
7
8
|
from scipy.stats import linregress
|
|
8
|
-
from __future__ import annotations
|
|
9
9
|
|
|
10
10
|
|
|
11
11
|
|
|
@@ -1,11 +1,14 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: kmclab
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.4
|
|
4
4
|
Summary: Hex and square lattice KMC classes.
|
|
5
5
|
Author: Shirin Asadi
|
|
6
6
|
License: MIT
|
|
7
7
|
Requires-Python: >=3.9
|
|
8
8
|
Description-Content-Type: text/markdown
|
|
9
|
+
Requires-Dist: numpy>=1.21
|
|
10
|
+
Requires-Dist: matplotlib>=3.5
|
|
11
|
+
Requires-Dist: scipy>=1.8
|
|
9
12
|
|
|
10
13
|
# kmclab
|
|
11
14
|
|
|
@@ -14,7 +17,17 @@ Currently includes simple hexagonal and square lattice KMC classes.
|
|
|
14
17
|
|
|
15
18
|
## Installation
|
|
16
19
|
|
|
17
|
-
|
|
20
|
+
Install using pip
|
|
21
|
+
```
|
|
22
|
+
pip install kmclab
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
To upgrade to the latest version
|
|
26
|
+
```
|
|
27
|
+
pip install -U kmclab
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
Or you may clone the repository and install in editable mode:
|
|
18
31
|
|
|
19
32
|
```bash
|
|
20
33
|
git clone https://github.com/shirinasadix/kmclab.git
|
|
@@ -47,3 +60,4 @@ kmclab/
|
|
|
47
60
|
```
|
|
48
61
|
XXX
|
|
49
62
|
```
|
|
63
|
+
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|