Changeset 485 for elixir/trunk/examples/videostore/setup.py
- Timestamp:
- 10/01/09 16:28:12 (3 years ago)
- Files:
-
- 1 modified
-
elixir/trunk/examples/videostore/setup.py (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
elixir/trunk/examples/videostore/setup.py
r11 r485 8 8 name="videostore", 9 9 version=version, 10 10 11 11 # uncomment the following lines if you fill them out in release.py 12 12 #description=description, … … 16 16 #download_url=download_url, 17 17 #license=license, 18 18 19 19 install_requires = [ 20 20 "TurboGears >= 1.0", 21 "SQLAlchemy", 21 "SQLAlchemy", 22 22 ], 23 23 scripts = ["start-videostore.py"], … … 29 29 # Use keywords if you'll be adding your package to the 30 30 # Python Cheeseshop 31 31 32 32 # if this has widgets, uncomment the next line 33 33 # 'turbogears.widgets', 34 34 35 35 # if this has a tg-admin command, uncomment the next line 36 36 # 'turbogears.command', 37 37 38 38 # if this has identity providers, uncomment the next line 39 39 # 'turbogears.identity.provider', 40 40 41 41 # If this is a template plugin, uncomment the next line 42 42 # 'python.templating.engines', 43 43 44 44 # If this is a full application, uncomment the next line 45 45 # 'turbogears.app', … … 54 54 # the Cheeseshop, uncomment the next line 55 55 # 'Framework :: TurboGears :: Applications', 56 56 57 57 # if this is a package that includes widgets that you'll distribute 58 58 # through the Cheeseshop, uncomment the next line … … 61 61 test_suite = 'nose.collector', 62 62 ) 63 63
