Skip to content

Commit

Permalink
initial project structure
Browse files Browse the repository at this point in the history
  • Loading branch information
philikon committed Jun 4, 2007
0 parents commit ebf9932
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 0 deletions.
8 changes: 8 additions & 0 deletions buildout.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
[buildout]
develop = .
parts = test
find-links = http://download.zope.org/distribution/

[test]
recipe = zc.recipe.testrunner
eggs = tempstorage
33 changes: 33 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
##############################################################################
#
# 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.
#
##############################################################################
"""Setup for the Acquisition egg package
"""
import os
from setuptools import setup, find_packages, Extension

setup(name='tempstorage',
version = '2.11.0a1',
url='http://svn.zope.org/tempstorage',
license='ZPL 2.1',
description='',
author='Zope Corporation and Contributors',
author_email='zope-dev@zope.org',
long_description='',

packages=find_packages('src'),
package_dir={'': 'src'},

include_package_data=True,
zip_safe=False,
)

0 comments on commit ebf9932

Please sign in to comment.