You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@bloodhound.apache.org by gj...@apache.org on 2012/06/21 10:55:51 UTC

svn commit: r1352461 - /incubator/bloodhound/trunk/bloodhound_multiproduct/setup.py

Author: gjm
Date: Thu Jun 21 08:55:51 2012
New Revision: 1352461

URL: http://svn.apache.org/viewvc?rev=1352461&view=rev
Log:
multiproduct: updating metadata in setup.py - towards #100 (from olemis)

Modified:
    incubator/bloodhound/trunk/bloodhound_multiproduct/setup.py

Modified: incubator/bloodhound/trunk/bloodhound_multiproduct/setup.py
URL: http://svn.apache.org/viewvc/incubator/bloodhound/trunk/bloodhound_multiproduct/setup.py?rev=1352461&r1=1352460&r2=1352461&view=diff
==============================================================================
--- incubator/bloodhound/trunk/bloodhound_multiproduct/setup.py (original)
+++ incubator/bloodhound/trunk/bloodhound_multiproduct/setup.py Thu Jun 21 08:55:51 2012
@@ -22,9 +22,14 @@ from setuptools import setup
 setup(
     name = 'BloodhoundMultiProduct',
     version = '0.0.1',
-    packages = ['multiproduct', 'tests',],
+    packages = ['multiproduct', 'multiproduct.ticket', 'tests',],
     package_data = {'multiproduct' : ['templates/*.html',]},
-    entry_points = {'trac.plugins':['multiproduct = multiproduct',],},
+    entry_points = {'trac.plugins': [
+            'multiproduct.model = multiproduct.model',
+            'multiproduct.product_admin = multiproduct.product_admin',
+            'multiproduct.ticket.web_ui = multiproduct.ticket.web_ui',
+            'multiproduct.web_ui = multiproduct.web_ui',
+        ],},
     test_suite = "tests",
 )