Added setup.py
This commit is contained in:
commit
d0614b1e24
1 changed files with 13 additions and 0 deletions
13
setup.py
Normal file
13
setup.py
Normal 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
|
||||||
|
''',
|
||||||
|
)
|
Reference in a new issue