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
2 changes: 1 addition & 1 deletion .github/workflows/linting.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ jobs:

- name: Lint
run: |
uv run flake8 oshconnect
uv run flake8 src/oshconnect
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "oshconnect"
version = "0.3.0a3.post3"
version = "0.3.0a4"
description = "Library for interfacing with OSH, helping guide visualization efforts, and providing a place to store configurations."
readme = "README.md"
authors = [
Expand All @@ -12,7 +12,8 @@ dependencies = [
"pydantic>=2.7.4,<3.0.0",
"shapely>=2.0.4,<3.0.0",
"websockets>=12.0,<16.0",
"requests"
"requests",
"aiohttp>=3.12.15",
]

[dependency-groups]
Expand All @@ -24,5 +25,4 @@ dev = [
]

[tool.setuptools]
#packages = ["oshconnect", "oshconnect.csapi4py", "oshconnect.datamodels", "oshconnect.csapi4py.comm"]
packages = {find = { where = ["src/"]}}
2 changes: 1 addition & 1 deletion src/oshconnect/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@
# ==============================================================================

from .oshconnectapi import OSHConnect
from .osh_connect_datamodels import System, Node, Datastream, Observation, ControlChannel
from .streamableresource import System, Node, Datastream, Observation, ControlChannel
Loading