1
Fork 0
This repository has been archived on 2023-03-26. You can view files and clone it, but cannot push or open issues or pull requests.
dotfile-automator/setup.py

15 lines
201 B
Python

from setuptools import setup
setup (
name='dotfile-automator',
version='0.0',
install_requires=[
'click',
'PyYaml'
],
entry_points='''
[console_scripts]
dfa=project.cli:cli
''',
)