File size: 239 Bytes
a65138c
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
from setuptools import setup
setup(name='egg.path',
      install_requires=['zc.recipe.egg'],
      py_modules=['egg_path'],
      entry_points = {
          'zc.buildout': [
              'default = egg_path:EggPath'
          ]
      })