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 = {'':["*.*"]})