Skip to content
This repository has been archived by the owner on May 13, 2020. It is now read-only.

Commit

Permalink
added structure
Browse files Browse the repository at this point in the history
  • Loading branch information
Adam Groszer committed Jun 3, 2010
0 parents commit 1b31dd8
Show file tree
Hide file tree
Showing 7 changed files with 167 additions and 0 deletions.
7 changes: 7 additions & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
CHANGES
=======

0.1.0 (unreleased)
------------------

- Initial release.
1 change: 1 addition & 0 deletions README.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
A set of tools for managing windows binary egg building.
52 changes: 52 additions & 0 deletions bootstrap.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
##############################################################################
#
# Copyright (c) 2007 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.
#
##############################################################################
"""Bootstrap a buildout-based project
Simply run this script in a directory containing a buildout.cfg.
The script accepts buildout command-line options, so you can
use the -c option to specify an alternate configuration file.
$Id$
"""

import os, shutil, sys, tempfile, urllib2

tmpeggs = tempfile.mkdtemp()

ez = {}
exec urllib2.urlopen('http://peak.telecommunity.com/dist/ez_setup.py'
).read() in ez
ez['use_setuptools'](to_dir=tmpeggs, download_delay=0)

import pkg_resources

cmd = 'from setuptools.command.easy_install import main; main()'
if sys.platform == 'win32':
cmd = '"%s"' % cmd # work around spawn lamosity on windows

ws = pkg_resources.working_set
assert os.spawnle(
os.P_WAIT, sys.executable, sys.executable,
'-c', cmd, '-mqNxd', tmpeggs, 'zc.buildout',
dict(os.environ,
PYTHONPATH=
ws.find(pkg_resources.Requirement.parse('setuptools')).location
),
) == 0

ws.add_entry(tmpeggs)
ws.require('zc.buildout')
import zc.buildout.buildout
zc.buildout.buildout.main(sys.argv[1:] + ['bootstrap'])
shutil.rmtree(tmpeggs)
33 changes: 33 additions & 0 deletions buildout.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
[buildout]
extends = http://download.zope.org/zope3.4/3.4.0/versions.cfg
develop = .
parts = scripts python test coverage-test coverage-report
versions = versions

[versions]
setuptools = 0.6c11
zc.buildout = 1.3.1

[test]
recipe = zc.recipe.testrunner
eggs = zope.wineggbuilder [test]

[coverage-test]
recipe = zc.recipe.testrunner
eggs = zope.wineggbuilder [test]
defaults = ['--coverage', '../../coverage']

[coverage-report]
recipe = zc.recipe.egg
eggs = z3c.coverage
scripts = coverage=coverage-report
arguments = ('coverage', 'coverage/report')

[python]
recipe = zc.recipe.egg
interpreter = python
eggs = zope.wineggbuilder

[scripts]
recipe = zc.recipe.egg
eggs = zope.wineggbuilder
66 changes: 66 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
##############################################################################
#
# Copyright (c) 2008 Zope Foundation 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.
#
##############################################################################
"""Package setup.
$Id$
"""
import os
from setuptools import setup, find_packages

def read(*rnames):
return open(os.path.join(os.path.dirname(__file__), *rnames)).read()

setup(
name='zope.wineggbuilder',
version='0.1.0dev',
author = "Adam Groszer and the Zope Community",
author_email = "zope-dev@zope.org",
description='An Automated Egg build System',
long_description=(
read('README.txt')
+ '\n\n' +
read('src','zope','wineggbuilder','index.txt')
+ '\n\n' +
read('CHANGES.txt')
),
license = "ZPL 2.1",
keywords = "ztk binary egg build",
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: Zope Public License',
'Programming Language :: Python',
'Natural Language :: English',
'Operating System :: OS Independent',
'Framework :: Buildout'],
url = 'http://pypi.python.org/pypi/zope.wineggbuilder',
packages = find_packages('src'),
include_package_data = True,
package_dir = {'': 'src'},
namespace_packages = ['keas'],
extras_require = dict(
test = [
'zope.testing',
],
),
install_requires=[
'BeautifulSoup',
'setuptools',
],
zip_safe = False,
entry_points = """
[console_scripts]
build = zope.wineggbuilder.build:main
""",
)
7 changes: 7 additions & 0 deletions src/zope/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
try:
# Declare this a namespace package if pkg_resources is available.
import pkg_resources
pkg_resources.declare_namespace(__name__)
except ImportError:
pass

1 change: 1 addition & 0 deletions src/zope/wineggbuilder/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Make a package.

0 comments on commit 1b31dd8

Please sign in to comment.