bigraph-schema 0.0.68__tar.gz → 0.0.71__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.
Potentially problematic release.
This version of bigraph-schema might be problematic. Click here for more details.
- {bigraph_schema-0.0.68/bigraph_schema.egg-info → bigraph_schema-0.0.71}/PKG-INFO +1 -1
- {bigraph_schema-0.0.68 → bigraph_schema-0.0.71/bigraph_schema.egg-info}/PKG-INFO +1 -1
- {bigraph_schema-0.0.68 → bigraph_schema-0.0.71}/pyproject.toml +1 -1
- {bigraph_schema-0.0.68 → bigraph_schema-0.0.71}/release.sh +7 -7
- bigraph_schema-0.0.71/setup.py +15 -0
- bigraph_schema-0.0.68/setup.py +0 -42
- {bigraph_schema-0.0.68 → bigraph_schema-0.0.71}/.github/workflows/notebook_to_html.yml +0 -0
- {bigraph_schema-0.0.68 → bigraph_schema-0.0.71}/.github/workflows/pytest.yml +0 -0
- {bigraph_schema-0.0.68 → bigraph_schema-0.0.71}/.gitignore +0 -0
- {bigraph_schema-0.0.68 → bigraph_schema-0.0.71}/AUTHORS.md +0 -0
- {bigraph_schema-0.0.68 → bigraph_schema-0.0.71}/CLA.md +0 -0
- {bigraph_schema-0.0.68 → bigraph_schema-0.0.71}/CODE_OF_CONDUCT.md +0 -0
- {bigraph_schema-0.0.68 → bigraph_schema-0.0.71}/CONTRIBUTING.md +0 -0
- {bigraph_schema-0.0.68 → bigraph_schema-0.0.71}/LICENSE +0 -0
- {bigraph_schema-0.0.68 → bigraph_schema-0.0.71}/README.md +0 -0
- {bigraph_schema-0.0.68 → bigraph_schema-0.0.71}/bigraph_schema/__init__.py +0 -0
- {bigraph_schema-0.0.68 → bigraph_schema-0.0.71}/bigraph_schema/edge.py +0 -0
- {bigraph_schema-0.0.68 → bigraph_schema-0.0.71}/bigraph_schema/parse.py +0 -0
- {bigraph_schema-0.0.68 → bigraph_schema-0.0.71}/bigraph_schema/protocols.py +0 -0
- {bigraph_schema-0.0.68 → bigraph_schema-0.0.71}/bigraph_schema/registry.py +0 -0
- {bigraph_schema-0.0.68 → bigraph_schema-0.0.71}/bigraph_schema/tests.py +0 -0
- {bigraph_schema-0.0.68 → bigraph_schema-0.0.71}/bigraph_schema/type_functions.py +0 -0
- {bigraph_schema-0.0.68 → bigraph_schema-0.0.71}/bigraph_schema/type_system.py +0 -0
- {bigraph_schema-0.0.68 → bigraph_schema-0.0.71}/bigraph_schema/type_system_adjunct.py +0 -0
- {bigraph_schema-0.0.68 → bigraph_schema-0.0.71}/bigraph_schema/units.py +0 -0
- {bigraph_schema-0.0.68 → bigraph_schema-0.0.71}/bigraph_schema/utilities.py +0 -0
- {bigraph_schema-0.0.68 → bigraph_schema-0.0.71}/bigraph_schema.egg-info/SOURCES.txt +0 -0
- {bigraph_schema-0.0.68 → bigraph_schema-0.0.71}/bigraph_schema.egg-info/dependency_links.txt +0 -0
- {bigraph_schema-0.0.68 → bigraph_schema-0.0.71}/bigraph_schema.egg-info/requires.txt +0 -0
- {bigraph_schema-0.0.68 → bigraph_schema-0.0.71}/bigraph_schema.egg-info/top_level.txt +0 -0
- {bigraph_schema-0.0.68 → bigraph_schema-0.0.71}/notebooks/core.ipynb +0 -0
- {bigraph_schema-0.0.68 → bigraph_schema-0.0.71}/notebooks/demo.ipynb +0 -0
- {bigraph_schema-0.0.68 → bigraph_schema-0.0.71}/notebooks/images/place-link.png +0 -0
- {bigraph_schema-0.0.68 → bigraph_schema-0.0.71}/notebooks/images/reaction-after.png +0 -0
- {bigraph_schema-0.0.68 → bigraph_schema-0.0.71}/notebooks/images/reaction-before.png +0 -0
- {bigraph_schema-0.0.68 → bigraph_schema-0.0.71}/notebooks/images/redex-reactum.png +0 -0
- {bigraph_schema-0.0.68 → bigraph_schema-0.0.71}/pytest.ini +0 -0
- {bigraph_schema-0.0.68 → bigraph_schema-0.0.71}/setup.cfg +0 -0
|
@@ -8,13 +8,13 @@ set -e
|
|
|
8
8
|
|
|
9
9
|
version="$1"
|
|
10
10
|
|
|
11
|
-
# Check version is valid
|
|
12
|
-
setup_py_version="$(python setup.py --version)"
|
|
13
|
-
if [ "$setup_py_version" != "$version" ]; then
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
fi
|
|
11
|
+
# # Check version is valid
|
|
12
|
+
# setup_py_version="$(python setup.py --version)"
|
|
13
|
+
# if [ "$setup_py_version" != "$version" ]; then
|
|
14
|
+
# echo "setup.py has version $setup_py_version, not $version."
|
|
15
|
+
# echo "Aborting."
|
|
16
|
+
# exit 1
|
|
17
|
+
# fi
|
|
18
18
|
|
|
19
19
|
# Check working directory is clean
|
|
20
20
|
if [ ! -z "$(git status --untracked-files=no --porcelain)" ]; then
|
bigraph_schema-0.0.68/setup.py
DELETED
|
@@ -1,42 +0,0 @@
|
|
|
1
|
-
from setuptools import setup, find_packages
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
VERSION = '0.0.68'
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
with open("README.md", "r") as readme:
|
|
8
|
-
description = readme.read()
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
setup(
|
|
12
|
-
name="bigraph-schema",
|
|
13
|
-
version=VERSION,
|
|
14
|
-
author="Eran Agmon, Ryan Spangler",
|
|
15
|
-
# author_email="agmon.eran@gmail.com, ryan.spangler@gmail.com",
|
|
16
|
-
# description="A serializable type schema for compositional systems biology",
|
|
17
|
-
# long_description=description,
|
|
18
|
-
# long_description_content_type="text/markdown",
|
|
19
|
-
# url="https://github.com/vivarium-collective/bigraph-schema",
|
|
20
|
-
# packages=find_packages(),
|
|
21
|
-
# classifiers=[
|
|
22
|
-
# "Development Status :: 3 - Alpha",
|
|
23
|
-
# "Intended Audience :: Developers",
|
|
24
|
-
# "License :: OSI Approved :: MIT License",
|
|
25
|
-
# "Operating System :: OS Independent",
|
|
26
|
-
# "Programming Language :: Python",
|
|
27
|
-
# "Programming Language :: Python :: 3.7",
|
|
28
|
-
# "Programming Language :: Python :: 3.8",
|
|
29
|
-
# "Programming Language :: Python :: 3.9",
|
|
30
|
-
# "Programming Language :: Python :: 3.10",
|
|
31
|
-
# "Programming Language :: Python :: 3.11",
|
|
32
|
-
# ],
|
|
33
|
-
# python_requires=">=3.7",
|
|
34
|
-
# install_requires=[
|
|
35
|
-
# # List your package dependencies here
|
|
36
|
-
# "numpy",
|
|
37
|
-
# "parsimonious",
|
|
38
|
-
# "fire",
|
|
39
|
-
# "pytest",
|
|
40
|
-
# "pint",
|
|
41
|
-
# ],
|
|
42
|
-
)
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{bigraph_schema-0.0.68 → bigraph_schema-0.0.71}/bigraph_schema.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|