mirror of
https://github.com/inofix/maestro.py.git
synced 2026-02-05 09:45:24 +01:00
- 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
17 lines
274 B
Python
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
|
|
''',
|
|
)
|