[all] Added 'egg' folder allowing to get the Appy trunk as a distutils package.

This commit is contained in:
Gaetan Delannay 2015-03-26 10:54:06 +01:00
parent ab147ce99d
commit b78a378adb
3 changed files with 21 additions and 0 deletions

10
egg/PKG-INFO Normal file
View file

@ -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

1
egg/appy Symbolic link
View file

@ -0,0 +1 @@
..

10
egg/setup.py Normal file
View file

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