libvcell 0.0.2__tar.gz → 0.0.3__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.
- {libvcell-0.0.2 → libvcell-0.0.3}/PKG-INFO +2 -2
- {libvcell-0.0.2 → libvcell-0.0.3}/README.md +1 -1
- libvcell-0.0.3/libvcell/py.typed +0 -0
- {libvcell-0.0.2 → libvcell-0.0.3}/pyproject.toml +4 -3
- {libvcell-0.0.2 → libvcell-0.0.3}/LICENSE +0 -0
- {libvcell-0.0.2 → libvcell-0.0.3}/build.py +0 -0
- {libvcell-0.0.2 → libvcell-0.0.3}/libvcell/__init__.py +0 -0
- {libvcell-0.0.2 → libvcell-0.0.3}/libvcell/_internal/__init__.py +0 -0
- {libvcell-0.0.2 → libvcell-0.0.3}/libvcell/_internal/native_calls.py +0 -0
- {libvcell-0.0.2 → libvcell-0.0.3}/libvcell/_internal/native_utils.py +0 -0
- {libvcell-0.0.2 → libvcell-0.0.3}/libvcell/libvcell.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: libvcell
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.3
|
|
4
4
|
Summary: This is a python package which wraps a subset of VCell Java code as a native python package.
|
|
5
5
|
Author: Jim Schaff
|
|
6
6
|
Author-email: schaff@uchc.edu
|
|
@@ -24,7 +24,7 @@ Description-Content-Type: text/markdown
|
|
|
24
24
|
[](https://img.shields.io/github/commit-activity/m/virtualcell/libvcell)
|
|
25
25
|
[](https://img.shields.io/github/license/virtualcell/libvcell)
|
|
26
26
|
|
|
27
|
-
libvcell is a subset of VCell algorithms intended to support the [pyvcell](https://pypi.org/project/pyvcell/) python package.
|
|
27
|
+
libvcell is a subset of VCell algorithms intended to support the [pyvcell](https://pypi.org/project/pyvcell/) python package.
|
|
28
28
|
|
|
29
29
|
- **Github repository**: <https://github.com/virtualcell/libvcell/>
|
|
30
30
|
- **Documentation** <https://virtualcell.github.io/libvcell/>
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
[](https://img.shields.io/github/commit-activity/m/virtualcell/libvcell)
|
|
7
7
|
[](https://img.shields.io/github/license/virtualcell/libvcell)
|
|
8
8
|
|
|
9
|
-
libvcell is a subset of VCell algorithms intended to support the [pyvcell](https://pypi.org/project/pyvcell/) python package.
|
|
9
|
+
libvcell is a subset of VCell algorithms intended to support the [pyvcell](https://pypi.org/project/pyvcell/) python package.
|
|
10
10
|
|
|
11
11
|
- **Github repository**: <https://github.com/virtualcell/libvcell/>
|
|
12
12
|
- **Documentation** <https://virtualcell.github.io/libvcell/>
|
|
File without changes
|
|
@@ -4,9 +4,9 @@ build-backend = "poetry.core.masonry.api"
|
|
|
4
4
|
|
|
5
5
|
[tool.poetry]
|
|
6
6
|
name = "libvcell"
|
|
7
|
-
version = "0.0.
|
|
7
|
+
version = "0.0.3"
|
|
8
8
|
description = "This is a python package which wraps a subset of VCell Java code as a native python package."
|
|
9
|
-
authors = ["Jim Schaff <schaff@uchc.edu>"]
|
|
9
|
+
authors = ["Jim Schaff <schaff@uchc.edu>", "Ezequiel Valencia <evalencia@uchc.edu>"]
|
|
10
10
|
repository = "https://github.com/virtualcell/libvcell"
|
|
11
11
|
documentation = "https://virtualcell.github.io/libvcell/"
|
|
12
12
|
readme = "README.md"
|
|
@@ -14,7 +14,8 @@ packages = [
|
|
|
14
14
|
{include = "libvcell"}
|
|
15
15
|
]
|
|
16
16
|
include = [
|
|
17
|
-
{path="libvcell/lib/libvcell*", format="wheel"}
|
|
17
|
+
{path="libvcell/lib/libvcell*", format="wheel"},
|
|
18
|
+
{path="libvcell/py.typed"}
|
|
18
19
|
]
|
|
19
20
|
|
|
20
21
|
[tool.poetry.dependencies]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|