File: setup.py

package info (click to toggle)
nevow 0.3.0-1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 940 kB
  • ctags: 2,089
  • sloc: python: 8,635; makefile: 15
file content (24 lines) | stat: -rw-r--r-- 731 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
#!/usr/bin/env python2.3
# -*- test-case-name: "nevow.test -xformless.test" -*-

from distutils.command import install
from distutils.core import setup

for scheme in install.INSTALL_SCHEMES.values():
    scheme['data'] = scheme['purelib']

setup(
    author='Donovan Preston et al',
    author_email='dp@divmod.org',
    name='nevow',
    version='0.3',
    description='Web Application Construction Kit',
    url='http://www.nevow.com/',
#    download_url='http://www.nevow.com/',
    packages=['formless', 'formless.test', 'nevow', 'nevow.flat', 'nevow.test'],
    data_files=[
        ['Nevow/formless', ['formless/freeform-default.css']],
        ['Nevow/nevow', ['nevow/Canvas.swf']],
        ],
    extra_path="Nevow"
    )