Utility to re-run a docker container with slightly different arguments
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

setup.py 1.8KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. """Setuptools based setup module for docker-rerun."""
  2. from setuptools import setup, find_packages
  3. from os import path
  4. here = path.abspath(path.dirname(__file__))
  5. setup(
  6. name='docker-rerun',
  7. version='0.1.1',
  8. description='Command-line tool to re-run a docker container',
  9. long_description='docker-rerun is a small utility script that makes it ' \
  10. 'easy to re-run docker containers using the same ' \
  11. 'arguments you used previously.' \
  12. '\n\n' \
  13. 'Want to update to a newer image, or add a missing port ' \
  14. 'publication? docker-rerun’s got you covered.' \
  15. '\n\n' \
  16. 'See the GitHub project_ for more info.' \
  17. '\n\n' \
  18. '.. _project: https://github.com/csmith/docker-rerun',
  19. url='https://github.com/csmith/docker-rerun',
  20. author='Chris Smith',
  21. author_email='chris87@gmail.com',
  22. license='MIT',
  23. # See https://pypi.python.org/pypi?%3Aaction=list_classifiers
  24. classifiers=[
  25. 'Development Status :: 4 - Beta',
  26. 'Intended Audience :: Developers',
  27. 'Intended Audience :: System Administrators',
  28. 'License :: OSI Approved :: MIT License',
  29. 'Programming Language :: Python :: 3 :: Only',
  30. 'Topic :: System :: Systems Administration',
  31. 'Topic :: Utilities',
  32. ],
  33. keywords='docker container',
  34. py_modules=["docker_rerun"],
  35. install_requires=[],
  36. test_suite='nose.collector',
  37. extras_require={
  38. 'dev': ['pylint'],
  39. 'test': ['coverage', 'nose', 'python-coveralls'],
  40. },
  41. entry_points={
  42. 'console_scripts': [
  43. 'docker-rerun=docker_rerun:entrypoint',
  44. ],
  45. },
  46. )