mirror of
https://github.com/jazzband/django-authority.git
synced 2026-03-16 22:20:28 +00:00
initial checkin with buildout and some other default files
This commit is contained in:
commit
efe086a508
6 changed files with 129 additions and 0 deletions
22
.hgignore
Normal file
22
.hgignore
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
syntax: glob
|
||||
*.pyc
|
||||
*.pyo
|
||||
*~
|
||||
*.swp
|
||||
*.orig
|
||||
*.kpf
|
||||
*.egg-info
|
||||
.project
|
||||
.pydevproject
|
||||
.DS_Store
|
||||
MANIFEST
|
||||
dist
|
||||
build
|
||||
dev.db
|
||||
local_settings.py
|
||||
parts/*
|
||||
eggs/*
|
||||
downloads/*
|
||||
.installed.cfg
|
||||
bin/*
|
||||
develop-eggs/*.egg-link
|
||||
1
AUTHORS
Normal file
1
AUTHORS
Normal file
|
|
@ -0,0 +1 @@
|
|||
Jannis Leidel
|
||||
2
MANIFEST.in
Normal file
2
MANIFEST.in
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
include LICENSE
|
||||
recursive-include authority/templates/authority *
|
||||
0
README
Normal file
0
README
Normal file
84
bootstrap.py
Normal file
84
bootstrap.py
Normal file
|
|
@ -0,0 +1,84 @@
|
|||
##############################################################################
|
||||
#
|
||||
# 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.
|
||||
#
|
||||
##############################################################################
|
||||
"""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()
|
||||
|
||||
is_jython = sys.platform.startswith('java')
|
||||
|
||||
try:
|
||||
import pkg_resources
|
||||
except ImportError:
|
||||
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
|
||||
|
||||
if sys.platform == 'win32':
|
||||
def quote(c):
|
||||
if ' ' in c:
|
||||
return '"%s"' % c # work around spawn lamosity on windows
|
||||
else:
|
||||
return c
|
||||
else:
|
||||
def quote (c):
|
||||
return c
|
||||
|
||||
cmd = 'from setuptools.command.easy_install import main; main()'
|
||||
ws = pkg_resources.working_set
|
||||
|
||||
if len(sys.argv) > 2 and sys.argv[1] == '--version':
|
||||
VERSION = ' == %s' % sys.argv[2]
|
||||
args = sys.argv[3:] + ['bootstrap']
|
||||
else:
|
||||
VERSION = ''
|
||||
args = sys.argv[1:] + ['bootstrap']
|
||||
|
||||
if is_jython:
|
||||
import subprocess
|
||||
|
||||
assert subprocess.Popen([sys.executable] + ['-c', quote(cmd), '-mqNxd',
|
||||
quote(tmpeggs), 'zc.buildout' + VERSION],
|
||||
env=dict(os.environ,
|
||||
PYTHONPATH=
|
||||
ws.find(pkg_resources.Requirement.parse('setuptools')).location
|
||||
),
|
||||
).wait() == 0
|
||||
|
||||
else:
|
||||
assert os.spawnle(
|
||||
os.P_WAIT, sys.executable, quote (sys.executable),
|
||||
'-c', quote (cmd), '-mqNxd', quote (tmpeggs), 'zc.buildout' + VERSION,
|
||||
dict(os.environ,
|
||||
PYTHONPATH=
|
||||
ws.find(pkg_resources.Requirement.parse('setuptools')).location
|
||||
),
|
||||
) == 0
|
||||
|
||||
ws.add_entry(tmpeggs)
|
||||
ws.require('zc.buildout' + VERSION)
|
||||
import zc.buildout.buildout
|
||||
zc.buildout.buildout.main(args)
|
||||
shutil.rmtree(tmpeggs)
|
||||
20
buildout.cfg
Normal file
20
buildout.cfg
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
[buildout]
|
||||
parts =
|
||||
python
|
||||
django
|
||||
develop = .
|
||||
eggs =
|
||||
django-authority
|
||||
ipython
|
||||
|
||||
[python]
|
||||
recipe = zc.recipe.egg
|
||||
interpreter = python
|
||||
eggs = ${buildout:eggs}
|
||||
|
||||
[django]
|
||||
recipe = djangorecipe
|
||||
version = trunk
|
||||
projectegg = example
|
||||
settings = development
|
||||
eggs = ${buildout:eggs}
|
||||
Loading…
Reference in a new issue