summaryrefslogtreecommitdiffstats
path: root/funcweb/setup.py
diff options
context:
space:
mode:
authorLuke Macken <lmacken@redhat.com>2008-01-24 15:23:00 -0500
committerLuke Macken <lmacken@redhat.com>2008-01-24 15:23:00 -0500
commit355d15f9d450c5997ef74b1fb0fc3745bf2dfe35 (patch)
tree824a4c121efa2e4e63dee3caefa2feb7dffb81f5 /funcweb/setup.py
parentdf4da5b1811b108b22cf6a4cab5e2fe5d75ef806 (diff)
downloadthird_party-func-355d15f9d450c5997ef74b1fb0fc3745bf2dfe35.tar.gz
third_party-func-355d15f9d450c5997ef74b1fb0fc3745bf2dfe35.tar.xz
third_party-func-355d15f9d450c5997ef74b1fb0fc3745bf2dfe35.zip
Only allow localhost and authenticated users access to funcweb. This entails,
- Utilizing the TurboGears identity framework - Creating our identity model using SQLAlchemy+Elixir
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'])],
)
-