Skip to content
Open
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
18 changes: 18 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"

[project]
name = "elastisim_python"
version = "0.1.0"
description = "Python bindings for the ElastiSim simulator"
requires-python = ">=3.9"
authors = [ { name = "Technical University of Darmstadt" } ]
license = { text = "BSD-3-Clause" }
dependencies = [ "pyzmq" ]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
]

Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@
# This software may be modified and distributed under the terms of the 3-Clause
# BSD License. See the LICENSE file in the base directory for details.

from elastisim_python.job import Job, JobState, JobType
from elastisim_python.node import Node, NodeType, NodeState
from elastisim_python.interface import InvocationType, pass_algorithm
from .job import Job, JobState, JobType
from .node import Node, NodeType, NodeState
from .interface import InvocationType, pass_algorithm
File renamed without changes.
File renamed without changes.
File renamed without changes.