1
0
mirror of https://github.com/inofix/maestro.py.git synced 2026-02-05 09:45:24 +01:00
Files
maestro.py/setup.py
hellerve 91cffeb9cd cleanup:
- move from python config to yaml config
- if the config file does not exist, emit a warning
- catch all errors in the program and emit helpful error messages instead of traceback
- move away from `subprocess.run` and use `subprocess.check_output` instead
- prettier listing
- always isntall all dependencies through pip
2019-03-25 14:44:53 +01:00

17 lines
274 B
Python

from setuptools import setup
setup(
name='maestro',
version='0.1',
py_modules=['maestro'],
install_requires=[
'Click',
'pyyaml',
'GitPython',
],
entry_points='''
[console_scripts]
maestro=main:main
''',
)