public
Description:
Homepage:
Clone URL: git://github.com/zerok/zerokspot.recipe.distutils.git
Click here to lend your support to: zerokspot.recipe.distutils and make a donation at www.pledgie.com !
100644 27 lines (25 sloc) 1.072 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
from setuptools import setup, find_packages
 
setup(
        name='zerokspot.recipe.distutils',
        author='Horst Gutmann',
        author_email='zerok@zerokspot.com',
        description="Recipe for zc.buildout that downloads one or multiple distutils-archives and installs them",
        version='0.1.2',
        packages=find_packages(),
        entry_points={'zc.buildout':
            ['default = zerokspot.recipe.distutils:Recipe']},
        install_requires=['setuptools', 'zc.buildout'],
        namespace_packages=['zerokspot'],
        zip_safe=True,
        classifiers=[
            'Development Status :: 3 - Alpha',
            'Environment :: Plugins',
            'Framework :: Buildout',
            'Intended Audience :: Developers',
            'Programming Language :: Python',
            'Topic :: Software Development :: Libraries :: Python Modules',
            'Topic :: System :: Installation/Setup',
            'License :: OSI Approved :: BSD License',
        ],
        url='http://github.com/zerok/zerokspot.recipe.distutils/'
        )