setup.py 364 Bytes
Newer Older
1 2 3 4 5 6 7 8
# The caddyprofiledeps egg allows to set dependecies of the Caddy profiles
# which are enabled during the instance run, thanks to using caddyprofiledeps
# recipe

from setuptools import setup
setup(
  name='caddyprofiledeps',
  install_requires=[
9
    'validators',
10 11 12 13 14 15 16
  ],
  entry_points={
    'zc.buildout': [
      'default = caddyprofiledummy:Recipe',
    ]
  }
)