Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
695 changes: 21 additions & 674 deletions LICENSE

Large diffs are not rendered by default.

676 changes: 676 additions & 0 deletions flepimop2-op_system/LICENSE

Large diffs are not rendered by default.

7 changes: 5 additions & 2 deletions flepimop2-op_system/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,11 @@ version = "0.1.0"
description = "flepimop2 system provider package for op_system"
requires-python = ">=3.11,<3.15"
authors = [
{ name = "Joshua Macdonald", email = "jmacdo16@jh.edu" },
{ name = "Joshua Macdonald", email = "jmacdo16@jh.edu" },
{ name = "Carl Pearson", email = "cap1024@unc.edu" },
{ name = "Timothy Willard", email = "twillard@unc.edu" },
]
license = { file = "LICENSE" }
dependencies = [
# Declare the dependency normally...
"op-system>=0.1.0",
Expand All @@ -28,6 +31,7 @@ classifiers = [
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
]

[project.urls]
Expand Down Expand Up @@ -65,7 +69,6 @@ preview = true
select = ["ALL"]
ignore = [
"COM812",
"CPY001",
"D203",
"D212",
"PLR2004",
Expand Down
16 changes: 16 additions & 0 deletions flepimop2-op_system/src/flepimop2/system/op_system/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
# flepimop2-op_system: Operator-Partitioned System Provider for flepimop2
# Copyright (C) 2026 Joshua Macdonald, Carl Pearson, Timothy Willard
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.

"""flepimop2 System integration for op_system (minimal, single-file).

This module exposes a pydantic-powered System that compiles an op_system spec
Expand Down
16 changes: 16 additions & 0 deletions flepimop2-op_system/tests/test_system.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
# flepimop2-op_system: Operator-Partitioned System Provider for flepimop2
# Copyright (C) 2026 Joshua Macdonald, Carl Pearson, Timothy Willard
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.

"""Tests for the flepimop2 op_system adapter System."""

from types import MappingProxyType
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ classifiers = [
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"License :: OSI Approved :: MIT License",
]

[project.optional-dependencies]
Expand Down
Loading