diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..e316c1a --- /dev/null +++ b/setup.py @@ -0,0 +1,22 @@ +#!/usr/bin/env python3 + +from setuptools import setup, find_packages + +setup( + + name='fsac', + version='0.1', + packages=find_packages(), + install_requires=[ + 'pandas>=0.22.0' + ], + + author='Dillon Barker', + author_email='dillon.barker@canada.ca', + + entry_points={ + 'console_scripts': [ + 'fsac = fsac:main' + ] + } +) \ No newline at end of file