├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── notebooks └── numba-cuda.ipynb ├── nuclearcli.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noahgift/nuclear_powered_command_line_tools/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noahgift/nuclear_powered_command_line_tools/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noahgift/nuclear_powered_command_line_tools/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noahgift/nuclear_powered_command_line_tools/HEAD/README.md -------------------------------------------------------------------------------- /notebooks/numba-cuda.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noahgift/nuclear_powered_command_line_tools/HEAD/notebooks/numba-cuda.ipynb -------------------------------------------------------------------------------- /nuclearcli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noahgift/nuclear_powered_command_line_tools/HEAD/nuclearcli.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | pylint 2 | pandas 3 | numba 4 | click 5 | scikit-learn --------------------------------------------------------------------------------