Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
slapos
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
Eteri
slapos
Commits
47f713d1
Commit
47f713d1
authored
May 26, 2011
by
Łukasz Nowak
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Write minimalistic setup in order to merge recipes.
parent
f6d4eed1
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
34 additions
and
0 deletions
+34
-0
CHANGES.txt
CHANGES.txt
+4
-0
README.txt
README.txt
+4
-0
setup.py
setup.py
+26
-0
No files found.
CHANGES.txt
0 → 100644
View file @
47f713d1
0.1
===
* no changes yet
README.txt
0 → 100644
View file @
47f713d1
slapos.recipebox
================
Box full of SlapOS ready recipes.
setup.py
0 → 100644
View file @
47f713d1
from
setuptools
import
setup
,
find_packages
version
=
'0.1'
name
=
'slapos.recipebox'
long_description
=
open
(
"README.txt"
).
read
()
+
"
\
n
"
+
\
open
(
"CHANGES.txt"
).
read
()
setup
(
name
=
name
,
version
=
version
,
description
=
"Box full of slapos recipes."
,
long_description
=
long_description
,
classifiers
=
[
"Framework :: Buildout :: Recipe"
,
"Programming Language :: Python"
,
],
keywords
=
'slapos recipe box'
,
license
=
'GPLv3'
,
namespace_packages
=
[
'slapos'
,
'slapos.recipe'
],
packages
=
find_packages
(),
include_package_data
=
True
,
install_requires
=
[
'setuptools'
,
# for namespace and internal usage
'zc.buildout'
,
# needed to play internally
],
zip_safe
=
True
,
)
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