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
isaak yansane-sisk
slapos.buildout
Commits
829a62dd
Commit
829a62dd
authored
Jun 26, 2006
by
Jim Fulton
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
improved meta data
parent
4852622c
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
10 deletions
+12
-10
README.txt
README.txt
+3
-5
setup.py
setup.py
+9
-5
No files found.
README.txt
View file @
829a62dd
...
...
@@ -88,12 +88,10 @@ and substitution extensions.
The detailed documentation for the various parts of buildout can be
found in the following files:
bootstrap.txt
Describes how to use the bootstrapping script
buildout.txt
Describes how to define and run buildouts. It also describes how
to write recipes.
recipes.txt
Documents the few built-in recipes.
easy_install.txt
Describes an Python APIs for invoking easy_install for for
generation of scripts with paths baked into them.
setup.py
View file @
829a62dd
...
...
@@ -3,17 +3,21 @@ from setuptools import setup, find_packages
setup
(
name
=
"zc.buildout"
,
version
=
"1.0"
,
author
=
"Jim Fulton"
,
author_email
=
"jim@zope.com"
,
description
=
"System for managing development buildouts"
,
license
=
"ZPL 2.1"
,
keywords
=
"development build"
,
url
=
'http://svn.zope.org/zc.buildout'
,
long_description
=
open
(
'README.txt'
).
read
(),
packages
=
[
'zc'
,
'zc.buildout'
],
package_dir
=
{
''
:
'src'
},
namespace_packages
=
[
'zc'
],
include_package_data
=
True
,
tests_require
=
[
'zope.testing'
],
test_suite
=
'zc.buildout.tests.test_suite'
,
author
=
"Jim Fulton"
,
author_email
=
"jim@zope.com"
,
description
=
"System for managing development buildouts"
,
license
=
"ZPL 2.1"
,
keywords
=
"development build"
,
install_requires
=
'setuptools'
,
entry_points
=
{
'console_scripts'
:
[
'buildout = zc.buildout.buildout:main'
]},
...
...
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