setup.py 771 B

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