summaryrefslogtreecommitdiffstats
path: root/funcweb/setup.py
diff options
context:
space:
mode:
authorJohn Eckersberg <jeckersb@redhat.com>2008-01-25 22:49:41 -0500
committerJohn Eckersberg <jeckersb@redhat.com>2008-01-25 22:49:41 -0500
commit16fa763ad4af4dff50ec50339614ac8a592e8590 (patch)
treeff19731a6eb2493faa1454ebd569fc681896798a /funcweb/setup.py
parent7b9cfc9caa1c764b2f41bc09394a924170a188c2 (diff)
parent1d60f197dab809e9a51c3377587d46370e698c52 (diff)
Merge branch 'master' into netapp
Diffstat (limited to 'funcweb/setup.py')
-rw-r--r--funcweb/setup.py28
1 files changed, 18 insertions, 10 deletions
diff --git a/funcweb/setup.py b/funcweb/setup.py
index 7ba1a53..9bde340 100644
--- a/funcweb/setup.py
+++ b/funcweb/setup.py
@@ -1,7 +1,10 @@
+# -*- coding: utf-8 -*-
+
from setuptools import setup, find_packages
from turbogears.finddata import find_package_data
import os
+execfile(os.path.join("funcweb", "release.py"))
packages=find_packages()
package_data = find_package_data(where='funcweb',
@@ -14,18 +17,16 @@ if os.path.isdir('locales'):
setup(
name="funcweb",
version=version,
-
- #description=description,
- author="Luke Macken",
- author_email="lmacken@redhat.com",
- #url=url,
- #download_url=download_url,
- #license=license,
+ description=description,
+ author=author,
+ author_email=email,
+ url=url,
+ license=license,
install_requires=[
- "TurboGears >= 1.0.3.2",
+ "TurboGears >= 1.0.4.2",
+ "SQLAlchemy>=0.3.10",
],
- scripts=["start-funcweb.py"],
zip_safe=False,
packages=packages,
package_data=package_data,
@@ -63,5 +64,12 @@ setup(
# 'Framework :: TurboGears :: Widgets',
],
test_suite='nose.collector',
+ entry_points = {
+ 'console_scripts': [
+ 'start-funcweb = funcweb.commands:start',
+ ],
+ },
+ # Uncomment next line and create a default.cfg file in your project dir
+ # if you want to package a default configuration in your egg.
+ #data_files = [('config', ['default.cfg'])],
)
-