From b78a378adb07f967506780b2a48b8d326dd39e57 Mon Sep 17 00:00:00 2001 From: Gaetan Delannay Date: Thu, 26 Mar 2015 10:54:06 +0100 Subject: [PATCH] [all] Added 'egg' folder allowing to get the Appy trunk as a distutils package. --- egg/PKG-INFO | 10 ++++++++++ egg/appy | 1 + egg/setup.py | 10 ++++++++++ 3 files changed, 21 insertions(+) create mode 100644 egg/PKG-INFO create mode 120000 egg/appy create mode 100644 egg/setup.py diff --git a/egg/PKG-INFO b/egg/PKG-INFO new file mode 100644 index 0000000..ed68514 --- /dev/null +++ b/egg/PKG-INFO @@ -0,0 +1,10 @@ +Metadata-Version: 1.0 +Name: appy +Version: dev +Summary: The Appy framework +Home-page: http://appyframework.org +Author: Gaetan Delannay +Author-email: gaetan.delannay AT geezteem.com +License: GPL +Description: Appy builds simple but complex web Python apps. +Platform: all diff --git a/egg/appy b/egg/appy new file mode 120000 index 0000000..a96aa0e --- /dev/null +++ b/egg/appy @@ -0,0 +1 @@ +.. \ No newline at end of file diff --git a/egg/setup.py b/egg/setup.py new file mode 100644 index 0000000..31be9a3 --- /dev/null +++ b/egg/setup.py @@ -0,0 +1,10 @@ +from distutils.core import setup +setup(name = "appy", version = "dev", + description = "The Appy framework", + long_description = "Appy builds simple but complex web Python apps.", + author = "Gaetan Delannay", + author_email = "gaetan.delannay AT geezteem.com", + license = "GPL", platforms="all", + url = 'http://appyframework.org', + packages = ["appy","appy.fields","appy.bin","appy.gen","appy.gen.ui","appy.gen.ui.jscalendar","appy.gen.ui.jscalendar.lang","appy.gen.ui.jscalendar.skins","appy.gen.ui.jscalendar.skins.tiger","appy.gen.ui.jscalendar.skins.aqua","appy.gen.ui.ckeditor","appy.gen.templates","appy.gen.tr","appy.gen.wrappers","appy.gen.mixins","appy.px","appy.shared","appy.shared.data","appy.pod","appy.pod.test","appy.pod.test.templates","appy.pod.test.contexts","appy.pod.test.images","appy.pod.test.results"], + package_data = {'':["*.*"]})