zerok / zerokspot.gitrecipe

This URL has Read+Write access

zerokspot.gitrecipe / setup.py
100644 25 lines (23 sloc) 1.008 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
from setuptools import setup, find_packages
 
setup(
        name='zerokspot.recipe.git',
        author='Horst Gutmann',
        author_email='zerok@zerokspot.com',
        description='Simple zc.buildout recipe for sources in a git repository',
        version='0.2.0',
        url='http://github.com/zerok/zerokspot.gitrecipe/',
        install_requires=['setuptools', 'zc.buildout'],
        namespace_packages=['zerokspot'],
        packages=find_packages(exclude=['ez_setup']),
        entry_points={'zc.buildout': ['default = zerokspot.recipe.git:Recipe']},
        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',
            ]
        )