-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
executable file
·54 lines (50 loc) · 1.95 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
48
49
50
51
52
53
54
##############################################################################
#
# Copyright (c) 2006 Zope Corporation and Contributors.
# All Rights Reserved.
#
# This software is subject to the provisions of the Zope Public License,
# Version 2.1 (ZPL). A copy of the ZPL should accompany this distribution.
# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
# FOR A PARTICULAR PURPOSE.
#
##############################################################################
import os
from setuptools import setup, find_packages
def read(*rnames):
return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
name = "hostout.ubuntu"
setup(
name = name,
version = "1.0a4",
author = "Dylan Jay",
author_email = "[email protected]",
description = """Plugin for collective.hostout that bootstraps an ubuntu host ready for hostout deployment""",
license = "GPL",
keywords = "buildout, fabric, deploy, deployment, server, plone, django, host, hosting",
url='https://svn.plone.org/svn/collective/'+name,
long_description=(
read('README.txt')
+ '\n' +
read('hostout', 'ubuntu', 'README.txt')
+ '\n' +
read('CHANGES.txt')
+ '\n'
),
packages = find_packages(),
include_package_data = True,
# data_files = [('.', ['*.txt'])],
# package_data = {'':('*.txt')},
namespace_packages = ['hostout'],
install_requires = ['zc.buildout',
'zc.recipe.egg',
'setuptools',
'collective.hostout',
],
entry_points = {'zc.buildout':['default = hostout.ubuntu:Recipe'],
'fabric': ['fabfile = hostout.ubuntu.fabfile'],
},
zip_safe = False,
)