From 47f713d1ec54db168bc867ba760a765f7f9866e0 Mon Sep 17 00:00:00 2001 From: =?utf8?q?=C5=81ukasz=20Nowak?= Date: Thu, 26 May 2011 18:21:13 +0200 Subject: [PATCH] Write minimalistic setup in order to merge recipes. --- CHANGES.txt | 4 ++++ README.txt | 4 ++++ setup.py | 26 ++++++++++++++++++++++++++ 3 files changed, 34 insertions(+) create mode 100644 CHANGES.txt create mode 100644 README.txt create mode 100644 setup.py diff --git a/CHANGES.txt b/CHANGES.txt new file mode 100644 index 0000000..c2f7cb5 --- /dev/null +++ b/CHANGES.txt @@ -0,0 +1,4 @@ +0.1 +=== + + * no changes yet diff --git a/README.txt b/README.txt new file mode 100644 index 0000000..1fb2d67 --- /dev/null +++ b/README.txt @@ -0,0 +1,4 @@ +slapos.recipebox +================ + +Box full of SlapOS ready recipes. diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..09891a1 --- /dev/null +++ b/setup.py @@ -0,0 +1,26 @@ +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, + ) -- 2.1.4