TUDelft-CITG / halem

HALEM is a python package for optimizing shipping routes. This package provides an algorithm for optimizing the route for a given hydrodynamic model.
https://halem.readthedocs.io
MIT License
12 stars 4 forks source link

`halem` command #1

Closed SiggyF closed 5 years ago

SiggyF commented 5 years ago

This package installs the command line program halem. But this program is not yet implemented.

Are you planning to create a command line interface to your software? Or is it intended to be a library?

Pietervanhalem commented 5 years ago

Hi Fedor,

thanks for your feedback. I am not aware of any command line interfaces. I think I copied this from OpenCLSim when I created this file. I Think you refer to these lines in the setup.py:

entry_points={
    'console_scripts': [
        'halem=halem.cli:cli',
    ],
},

can I just remove these lines?

SiggyF commented 5 years ago

Yes you can remove that part. In case you want to re-add it later, it is described in the setuptools manual.

Pietervanhalem commented 5 years ago

This Issue is fixed in commit 'command_line_issue' in the developer's branch and will soon be merged with the master