[all] Added 'egg' folder allowing to get the Appy trunk as a distutils package.
This commit is contained in:
parent
ab147ce99d
commit
b78a378adb
10
egg/PKG-INFO
Normal file
10
egg/PKG-INFO
Normal 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
|
10
egg/setup.py
Normal file
10
egg/setup.py
Normal 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 = {'':["*.*"]})
|
Loading…
Reference in a new issue