setup.py 866 B

12345678910111213141516171819202122232425262728293031323334
  1. #!/usr/bin/env python
  2. from setuptools import setup
  3. from glob import glob
  4. import baker
  5. long_description = '''
  6. Baker is yet another deployment tool. Baker is a mashup of Paramiko
  7. (https://www.paramiko.org/) and the sup config file layout
  8. (https://github.com/pressly/sup).
  9. The name Baker is a reference to Chet Baker.
  10. '''
  11. description = ('Simple deployment tool based on Paramiko')
  12. pkg_yaml = glob('pkg/*.yaml')
  13. setup(name='Baker',
  14. version=baker.__version__,
  15. description=description,
  16. long_description=long_description,
  17. author='Bertrand Chenal',
  18. author_email='bertrand@adimian.com',
  19. url='https://bitbucket.org/bertrandchenal/baker',
  20. license='MIT',
  21. py_modules=['baker'],
  22. entry_points={
  23. 'console_scripts': [
  24. 'bk = baker:main',
  25. ],
  26. },
  27. data_files=[('pkg', pkg_yaml)],
  28. )