commit d0614b1e243ed08181db1402762a35138f6df863 Author: Jake Howard Date: Fri Nov 27 18:08:12 2015 +0000 Added setup.py diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..cf69ab3 --- /dev/null +++ b/setup.py @@ -0,0 +1,13 @@ +from setuptools import setup + +setup ( + name='ditfile-automator', + version='0.0', + install_requires=[ + 'click' + ], + entry_points=''' + [console_scripts] + dfa=project.cli:cli + ''', +)