root / elixir / trunk / examples / videostore / setup.py

Revision 485, 1.9 kB (checked in by ged, 3 years ago)

fix a few cosmetic issues reported by pyflakes (mostly unused imports)

Line 
1from setuptools import setup, find_packages
2from turbogears.finddata import find_package_data
3
4import os
5execfile(os.path.join("videostore", "release.py"))
6
7setup(
8    name="videostore",
9    version=version,
10
11    # uncomment the following lines if you fill them out in release.py
12    #description=description,
13    #author=author,
14    #author_email=email,
15    #url=url,
16    #download_url=download_url,
17    #license=license,
18
19    install_requires = [
20        "TurboGears >= 1.0",
21        "SQLAlchemy",
22    ],
23    scripts = ["start-videostore.py"],
24    zip_safe=False,
25    packages=find_packages(),
26    package_data = find_package_data(where='videostore',
27                                     package='videostore'),
28    keywords = [
29        # Use keywords if you'll be adding your package to the
30        # Python Cheeseshop
31
32        # if this has widgets, uncomment the next line
33        # 'turbogears.widgets',
34
35        # if this has a tg-admin command, uncomment the next line
36        # 'turbogears.command',
37
38        # if this has identity providers, uncomment the next line
39        # 'turbogears.identity.provider',
40
41        # If this is a template plugin, uncomment the next line
42        # 'python.templating.engines',
43
44        # If this is a full application, uncomment the next line
45        # 'turbogears.app',
46    ],
47    classifiers = [
48        'Development Status :: 3 - Alpha',
49        'Operating System :: OS Independent',
50        'Programming Language :: Python',
51        'Topic :: Software Development :: Libraries :: Python Modules',
52        'Framework :: TurboGears',
53        # if this is an application that you'll distribute through
54        # the Cheeseshop, uncomment the next line
55        # 'Framework :: TurboGears :: Applications',
56
57        # if this is a package that includes widgets that you'll distribute
58        # through the Cheeseshop, uncomment the next line
59        # 'Framework :: TurboGears :: Widgets',
60    ],
61    test_suite = 'nose.collector',
62    )
Note: See TracBrowser for help on using the browser.