File: setupcommon.py

package info (click to toggle)
nevow 0.9.31-3
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 2,804 kB
  • ctags: 4,921
  • sloc: python: 19,639; ansic: 136; sh: 53; xml: 42; makefile: 25; sql: 5
file content (53 lines) | stat: -rw-r--r-- 1,451 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
name='Nevow'
from nevow import __version__ as version
maintainer = 'Divmod, Inc.'
maintainer_email = 'support@divmod.org'
description = 'Web Application Construction Kit'
url='http://divmod.org/trac/wiki/DivmodNevow'
license='MIT'
platforms=["any"]
classifiers=[
    "Intended Audience :: Developers",
    "Programming Language :: Python",
    "Development Status :: 4 - Beta",
    "Topic :: Internet :: WWW/HTTP :: Dynamic Content"]
scripts=['bin/nevow-xmlgettext', 'bin/nit']
package_data={
        'formless': [
            'freeform-default.css'
            ],
        'nevow': [
            'Canvas.swf',
            '*.css',
            '*.js',
            'js/Divmod/*.js',
            'js/Nevow/*.js',
            'js/Nevow/Test/*.js',
            'js/Nevow/Athena/Tests/*.js',
            'js/Divmod/Runtime/*.js',
            'js/Nevow/Athena/*.js',
            'js/Nevow/TagLibrary/*.js',
            'js/Divmod/Test/*.js',
            'js/PythonTestSupport/*.js',
            ],
        'nevow.athena_private': [
            '*.png'
            ],
        'nevow.taglibrary': [
            '*.css',
            '*.js'
            ],
        'nevow.livetrial': [
            '*.css',
            '*.js'
            ],
        'nevow.test': [
            '*.js'
            ],
        'nevow.test.test_package.Foo': [
            '*.js'
            ],
        'nevow.test.test_package.Foo.Baz': [
            '*.js'
            ],
        }