Skip to content

Commit

Permalink
rename contents
Browse files Browse the repository at this point in the history
  • Loading branch information
danbryce committed Oct 18, 2022
1 parent 4afaaa8 commit 15fceab
Show file tree
Hide file tree
Showing 23 changed files with 1,154 additions and 826 deletions.
4 changes: 2 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
/src/paml_check.egg-info/
/src/labop_check.egg-info/
/env/
/.idea/misc.xml
/.idea/modules.xml
/.idea/paml-check.iml
/.idea/labop-check.iml
/.idea/inspectionProfiles/profiles_settings.xml
/.idea/inspectionProfiles/Project_Default.xml
/.idea/vcs.xml
Expand Down
14 changes: 14 additions & 0 deletions .idea/paml-check.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ verify_ssl = true
name = "pypi"

[packages]
paml-check = {editable = true, path = "."}
paml = {ref = "f0102179c2494d6f2b785aa9b32b1c6a80604c2f", git = "https://github.com/SD2E/paml.git"}
labop-check = {editable = true, path = "."}
labop = {ref = "f0102179c2494d6f2b785aa9b32b1c6a80604c2f", git = "https://github.com/SD2E/labop.git"}
pyparsing = "==2.4.7"
pyshacl = "==0.14.0"
rdflib = "==5.0.0"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1 @@
# paml-check
# labop-check
51 changes: 27 additions & 24 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,34 +7,37 @@
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()


def _post_install():
print("Installing z3...")
os.system("pysmt-install --z3 --confirm-agreement")
os.system("export PYSMT_CYTHON=0")

setup(name='labop_check',
version='0.1.3',
description='LabOP Checker',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/SD2E/labop-check',
author='Dan Bryce',
author_email='[email protected]',
license='MIT',
packages=find_packages('src'),
package_dir={'': 'src'},
install_requires=[
# "paml" This requires that paml have a valid package name
"pint",
"pysmt",
"sbol3",
"z3-solver",
# "plotly>=5.3.1",
"pandas",
"graphviz"
],
tests_require=["pytest"],
zip_safe=False
)

setup(
name="labop_check",
version="0.1.3",
description="LabOP Checker",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/SD2E/labop-check",
author="Dan Bryce",
author_email="[email protected]",
license="MIT",
packages=find_packages("src"),
package_dir={"": "src"},
install_requires=[
# "labop" This requires that labop have a valid package name
"pint",
"pysmt",
"sbol3",
"z3-solver",
# "plotly>=5.3.1",
"pandas",
"graphviz",
],
tests_require=["pytest"],
zip_safe=False,
)

_post_install()
14 changes: 14 additions & 0 deletions src/paml_check.egg-info/PKG-INFO
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
Metadata-Version: 2.1
Name: paml-check
Version: 0.1.3
Summary: LabOP Checker
Home-page: https://github.com/SD2E/paml-check
Author: Dan Bryce
Author-email: [email protected]
License: MIT
Platform: UNKNOWN
Description-Content-Type: text/markdown
License-File: LICENSE

# paml-check

30 changes: 30 additions & 0 deletions src/paml_check.egg-info/SOURCES.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
LICENSE
README.md
pyproject.toml
setup.py
src/paml_check/__init__.py
src/paml_check/activity_graph.py
src/paml_check/constraints.py
src/paml_check/minimize_duration.py
src/paml_check/paml_check.py
src/paml_check/plot.py
src/paml_check/protocol.py
src/paml_check/schedule.py
src/paml_check/units.py
src/paml_check/utils.py
src/paml_check.egg-info/PKG-INFO
src/paml_check.egg-info/SOURCES.txt
src/paml_check.egg-info/dependency_links.txt
src/paml_check.egg-info/not-zip-safe
src/paml_check.egg-info/requires.txt
src/paml_check.egg-info/top_level.txt
src/paml_check/convert_constraints/__init__.py
src/paml_check/convert_constraints/comparison.py
src/paml_check/convert_constraints/duration.py
src/paml_check/convert_constraints/expression.py
src/paml_check/convert_constraints/logic.py
src/paml_check/convert_constraints/time.py
test/test_generate_constraints.py
test/test_hand_coded.py
test/test_read_paml.py
test/test_subprotocol.py
1 change: 1 addition & 0 deletions src/paml_check.egg-info/dependency_links.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

1 change: 1 addition & 0 deletions src/paml_check.egg-info/not-zip-safe
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

6 changes: 6 additions & 0 deletions src/paml_check.egg-info/requires.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
pint
pysmt
sbol3
z3-solver
pandas
graphviz
1 change: 1 addition & 0 deletions src/paml_check.egg-info/top_level.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
paml_check
Loading

0 comments on commit 15fceab

Please sign in to comment.