Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
slapos.buildout
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Yusei Tahara
slapos.buildout
Commits
b8a47890
Commit
b8a47890
authored
Nov 03, 2007
by
Stephan Richter
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Get ready for final release.
parent
86b650a2
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
39 additions
and
14 deletions
+39
-14
zc.recipe.egg_/CHANGES.txt
zc.recipe.egg_/CHANGES.txt
+6
-0
zc.recipe.egg_/setup.py
zc.recipe.egg_/setup.py
+33
-14
No files found.
zc.recipe.egg_/CHANGES.txt
View file @
b8a47890
...
...
@@ -8,6 +8,12 @@ To do
Change History
**************
1.0.0 (2007-11-03)
==================
- No code changes from last beta, just some small package meta-data
improvements.
1.0.0b5 (2007-02-08)
====================
...
...
zc.recipe.egg_/setup.py
View file @
b8a47890
##############################################################################
#
# 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 zc.recipe.egg package
$Id$
"""
import
os
from
setuptools
import
setup
,
find_packages
...
...
@@ -7,7 +24,7 @@ def read(*rnames):
name
=
"zc.recipe.egg"
setup
(
name
=
name
,
version
=
"1.0.0
b6
"
,
version
=
"1.0.0"
,
author
=
"Jim Fulton"
,
author_email
=
"jim@zope.com"
,
description
=
"Recipe for installing Python package distributions as eggs"
,
...
...
@@ -28,17 +45,26 @@ setup(
read
(
'src'
,
'zc'
,
'recipe'
,
'egg'
,
'api.txt'
)
+
'
\
n
'
+
'Download
\
n
'
'*********
*************
\
n
'
'*********
\
n
'
),
license
=
"ZPL 2.1"
,
keywords
=
"development build"
,
url
=
'http://svn.zope.org/zc.buildout'
,
classifiers
=
[
'Development Status :: 5 - Production/Stable'
,
'Framework :: Buildout'
,
'Intended Audience :: Developers'
,
'License :: OSI Approved :: Zope Public License'
,
'Topic :: Software Development :: Build Tools'
,
'Topic :: Software Development :: Libraries :: Python Modules'
,
],
url
=
'http://cheeseshop.python.org/pypi/zc.recipe.egg'
,
license
=
"ZPL 2.1"
,
packages
=
find_packages
(
'src'
),
include_package_data
=
True
,
package_dir
=
{
''
:
'src'
},
namespace_packages
=
[
'zc'
,
'zc.recipe'
],
install_requires
=
[
'zc.buildout >=1.0.0b3'
,
'setuptools'
],
install_requires
=
[
'zc.buildout >=1.0.0b3'
,
'setuptools'
],
tests_require
=
[
'zope.testing'
],
test_suite
=
name
+
'.tests.test_suite'
,
entry_points
=
{
'zc.buildout'
:
[
'default = %s:Scripts'
%
name
,
...
...
@@ -49,13 +75,6 @@ setup(
'develop = %s:Develop'
%
name
,
]
},
include_package_data
=
True
,
zip_safe
=
False
,
classifiers
=
[
'Framework :: Buildout'
,
'Development Status :: 4 - Beta'
,
'Intended Audience :: Developers'
,
'License :: OSI Approved :: Zope Public License'
,
'Topic :: Software Development :: Build Tools'
,
'Topic :: Software Development :: Libraries :: Python Modules'
,
],
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment