Skip to content

Commit

Permalink
Add py.typed and module exports
Browse files Browse the repository at this point in the history
  • Loading branch information
alexhad6 committed Nov 14, 2023
1 parent 8a615f6 commit 714393d
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 3 deletions.
16 changes: 16 additions & 0 deletions entropylab/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,19 @@
from entropylab.instruments.lab_topology import ExperimentResources, LabResources
from entropylab.results_backend.sqlalchemy.db import SqlAlchemyDB
from entropylab.script_experiment import Script, script_experiment

__all__ = [
"ExperimentReader",
"RawResultData",
"EntropyContext",
"GraphHelper",
"Graph",
"PyNode",
"SubGraphNode",
"pynode",
"ExperimentResources",
"LabResources",
"SqlAlchemyDB",
"Script",
"script_experiment",
]
Empty file added entropylab/py.typed
Empty file.
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
[tool.poetry]
name = "entropylab"
version = "0.1.3"
version = "0.1.4"
description = ""
license = "BSD-3-Clause"
authors = [
"Guy Kerem <[email protected]>",
"Ilan Mitnikov <[email protected]>",
"Gal Winer <[email protected]>",
"Tal Shani <[email protected]>"
"Tal Shani <[email protected]>",
]
packages = [{include = "entropylab"}]
packages = [{ include = "entropylab" }]
exclude = ["**/tests/**"]
readme = "README.md"
homepage = "https://github.com/entropy-lab/entropy"
Expand Down

0 comments on commit 714393d

Please sign in to comment.