Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Consolidate code structure #26

Open
wants to merge 10 commits into
base: main
Choose a base branch
from
10 changes: 9 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,11 @@ dev = [
"ruff~=0.5.2",
]

[dependency-groups]
dev = [
"pytest-benchmark>=5.1.0",
]

[tool.setuptools]
include-package-data = true

Expand Down Expand Up @@ -131,6 +136,7 @@ docstring-code-line-length = "dynamic"

[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["E402", "F401", "F403", "D104"]
"__main__.py" = ["D100", "E402", "F401", "F403", "D104"]
"**/{tests,docs,tools}/*" = ["D100", "D103", "E402"]

[tool.pytest.ini_options]
Expand All @@ -140,7 +146,9 @@ pythonpath = [
markers = [
"get_functions: Functions that get data",
"add_functions: Functions that add data",
"empty_database: Functions for test empty database"
"empty_database: Functions for test empty database",
"export: Functions that export the database.",
"listing: Functions that list elements of the database."
]

[tool.coverage.run]
Expand Down
5 changes: 4 additions & 1 deletion src/plexosdb/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
from .sqlite import PlexosSQLite
# from .api import PlexosDB
from .enums import ClassEnum

# from .sqlite import PlexosSQLite
from .xml_handler import XMLHandler
Empty file added src/plexosdb/__main__.py
Empty file.
2 changes: 2 additions & 0 deletions src/plexosdb/api.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# type: ignore
# ruff :noqa
"""Simple API for interacting with the Plexos database."""

from collections.abc import Iterable
Expand Down
Loading