Create entry point

This commit is contained in:
Loic Guegan 2022-09-11 16:51:53 +02:00
parent 1563817f1f
commit d61eb48cf8
3 changed files with 8 additions and 0 deletions

View file

@ -3,4 +3,5 @@ __version__ = "0.0.1"
from esds.simulator import Simulator
from esds.rcode import RCode
from esds.__main__ import main

View file

@ -12,3 +12,6 @@ packages = ["esds"]
[tool.setuptools.dynamic]
version = {attr = "esds.__version__"}
[project.scripts]
esds = "esds:main"

View file

@ -7,6 +7,10 @@ description = Extensible Simulator of Distributed Systems
keywords = simulator, distributed systems, cyber-physical systems, network, wireless, wired
license = GNU LGPLv3
[options.entry_points]
console_scripts =
esds = esds:main
[options]
install_requires =
numpy