Veros on PyPI
Veros is now installable via `pip`! This allows you to get started with Veros in lightning speed:
bash
$ pip install veros
$ veros copy-setup --to /tmp
$ python /tmp/acc/acc.py
Other changes
- Command line interfaces are now based on `click` instead of `argparse`.
- Unless explicitly told, Veros does not consume any arguments from the command line any more. In setups meant to be run interactively, you can add the following to parse command line arguments:
python
veros.tools.cli
def run(*args, **kwargs):
simulation = MySetup(*args, **kwargs)
simulation.setup()
simulation.run()
if __name__ == "__main__":
run()
- Setup assets (i.e., external binary files required to run the standard setups) are now downloaded on demand to `$HOME/.veros`, or to wherever the environment variable `VEROS_ASSET_DIR` pointed when Veros was imported.
- Git LFS is not required anymore.
- Veros is now licensed under a MIT license.