-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
47 lines (46 loc) · 1.47 KB
/
setup.py
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
from setuptools import setup, find_packages
setup(
name = 'tipfyrecipes',
version = '0.3',
license = 'BSD',
keywords='buildout recipe google app engine appengine gae zc.buildout tipfy',
url='http://code.google.com/p/tipfyrecipes/',
description = 'Buildout recipes for Tipfy web framework',
author = 'Carlo Pires',
author_email = '[email protected]',
zip_safe = False,
platforms = 'any',
packages = find_packages(),
install_requires=[
'setuptools',
'zc.buildout >= 1.5.2',
'z3c.recipe.scripts >= 1.0.1',
'Mercurial',
'Mock==0.6.0',
],
entry_points = {
'zc.buildout': [
'sdk = tipfyrecipes.gae.sdk:InstallGAE',
'tools = tipfyrecipes.gae.tools:InstallGAETools',
'applib = tipfyrecipes.gae.applib:InstallAppLib',
'git = tipfyrecipes.git:Git',
'hg = tipfyrecipes.hg:Mercurial',
'svn = tipfyrecipes.svn:Subversion',
'ln = tipfyrecipes.ln:CreateSymbolicLinks',
],
'zc.buildout.uninstall': [
'git = tipfyrecipes.git:uninstall',
'hg = tipfyrecipes.hg:uninstall',
'svn = tipfyrecipes.svn:uninstall',
'ln = tipfyrecipes.ln:uninstall',
],
},
classifiers=[
'Development Status :: 4 - Beta',
'Framework :: Buildout',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Topic :: Software Development :: Build Tools',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)