#800: [PATCH] SQLalchemy selection in 0.9a5 does not generate requires
--------------------------------+-------------------------------------------
Reporter: [EMAIL PROTECTED] | Owner: anonymous
Type: enhancement | Status: new
Priority: lowest | Milestone:
Component: TurboGears | Version: 0.9a5
Severity: trivial | Resolution:
Keywords: |
--------------------------------+-------------------------------------------
Changes (by Matt Good <[EMAIL PROTECTED]>):
* summary: SQLalchemy selection in 0.9a5 does not generate requires =>
[PATCH] SQLalchemy selection in 0.9a5 does not
generate requires
Comment:
This won't affect the requirements for TurboGears itself, only
quickstarted projects as michele said above. And yes, this ''is'' really
trivial:
{{{
#!diff
Index: turbogears/qstemplates/quickstart/setup.py_tmpl
===================================================================
--- turbogears/qstemplates/quickstart/setup.py_tmpl (revision 1465)
+++ turbogears/qstemplates/quickstart/setup.py_tmpl (working copy)
@@ -16,7 +16,12 @@
#download_url=download_url,
#license=license,
- install_requires = ["TurboGears >= ${turbogearsversion}"],
+ install_requires = [
+ "TurboGears >= ${turbogearsversion}",
+#if $identity == "sqlalchemy"
+ "SQLAlchemy",
+#end if
+ ],
scripts = ["start-${package}.py"],
zip_safe=False,
packages=find_packages(),
}}}
--
Ticket URL: <http://trac.turbogears.org/turbogears/ticket/800>
TurboGears <http://www.turbogears.org/>
TurboGears front-to-back web development
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"TurboGears Tickets" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/turbogears-tickets
-~----------~----~----~----~------~----~------~--~---