1
Fork 0

Added setup.py

This commit is contained in:
Jake Howard 2015-11-27 18:08:12 +00:00
commit d0614b1e24
1 changed files with 13 additions and 0 deletions

13
setup.py Normal file
View File

@ -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
''',
)