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
Raw Permalink Normal View History

2015-11-27 18:08:12 +00:00
from setuptools import setup
setup (
2015-12-03 18:04:38 +00:00
name='dotfile-automator',
2015-11-27 18:08:12 +00:00
version='0.0',
install_requires=[
2016-01-05 21:35:49 +00:00
'click',
'PyYaml'
2015-11-27 18:08:12 +00:00
],
entry_points='''
[console_scripts]
dfa=project.cli:cli
''',
)