Basics
brew install pyenvbrew install poetrypyenv install 3.7pyenv global 3.7poetry new demopoetry add numpypoetry installpoetry run demo/demo.py
├── README.md
├── demo
│ ├── __init__.py
│ └── demo.py <-- add yourself
├── poetry.lock
├── pyproject.toml
└── tests
└── __init__.py
Passing in Arguments when using Poetry
From SO: test
poetry run arg_script arg1 arg2 arg3
Visualizing Dir Structure
brew install tree