# Here is how to keep both install_requires and requirements.txt
# without duplication: https://stackoverflow.com/questions/14399534/reference-requirements-txt-for-the-install-requires-kwarg-in-setuptools-setup-py/16624700
install_requires=[
"numpy",
"jsons",
"mako",
"paramiko",
],# Optional
# If there are data files included in your packages that need to be
# installed, specify them here.
#package_data={ # Optional
# "sample": ["package_data.dat"],
#},
# Although 'package_data' is the preferred approach, in some case you may
# need to place data files outside of your packages. See: