├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── data └── .gitkeep ├── environment.yml ├── exampleproject ├── __init__.py ├── data.py └── plot.py ├── figures └── .gitkeep ├── notebooks ├── .gitkeep └── profit-01-hg.ipynb ├── setup.py ├── tests └── .gitkeep └── tox.ini /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgrif/example-project/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgrif/example-project/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgrif/example-project/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgrif/example-project/HEAD/README.md -------------------------------------------------------------------------------- /data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgrif/example-project/HEAD/environment.yml -------------------------------------------------------------------------------- /exampleproject/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgrif/example-project/HEAD/exampleproject/__init__.py -------------------------------------------------------------------------------- /exampleproject/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgrif/example-project/HEAD/exampleproject/data.py -------------------------------------------------------------------------------- /exampleproject/plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgrif/example-project/HEAD/exampleproject/plot.py -------------------------------------------------------------------------------- /figures/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /notebooks/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /notebooks/profit-01-hg.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgrif/example-project/HEAD/notebooks/profit-01-hg.ipynb -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgrif/example-project/HEAD/setup.py -------------------------------------------------------------------------------- /tests/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgrif/example-project/HEAD/tox.ini --------------------------------------------------------------------------------