├── .gitignore ├── README.md ├── dta ├── __init__.py └── algorithms.py ├── example.py └── setup.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | *.swp 3 | 4 | dist/ 5 | build/ 6 | pygamma.egg-info/ 7 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christopherpoole/pygamma/HEAD/README.md -------------------------------------------------------------------------------- /dta/__init__.py: -------------------------------------------------------------------------------- 1 | from algorithms import gamma_evaluation 2 | -------------------------------------------------------------------------------- /dta/algorithms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christopherpoole/pygamma/HEAD/dta/algorithms.py -------------------------------------------------------------------------------- /example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christopherpoole/pygamma/HEAD/example.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christopherpoole/pygamma/HEAD/setup.py --------------------------------------------------------------------------------