~cando-developers/cando/trunk

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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
#!/usr/bin/env python
#
# CanDo - Web based competency tracking system.
# Copyright (C) 2006 Arlington Public Schools, Arlington, VA and The
# Shuttleworth Foundation.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software Foundation,
# Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
#
"""
CanDo setup script.
"""
import os
from setuptools import setup, find_packages

if os.path.exists("version.txt"):
    version = open("version.txt").read().strip()
else:
    version = open("version.txt.in").read().strip()

# Setup CanDo
setup(
    name="cando",
    description="A competency tracking system built on SchoolTool.",
    long_description="""
CanDo is an online application that allows teachers and administrators
to track student acquisition of competencies during a course. Using a
database of competencies which students are expected to acquire,
teachers can use CanDo to track and manage student progress in meeting
their competency goals. In order to demonstrate competency
acquisition, students are invited to submit proof entries in their
CanDo web portfolios. Students go through the competency profile to
create links between each competency acquired and the proof entries
associated with each competency. Teachers will then have the
possibility of accepting, rejecting or commenting upon the proofs of
competency acquisition submitted by the students.""",
    version=version,
    url='http://cando.schooltool.org',
    license="GPL",
    maintainer="Jason Straw",
    maintainer_email="jstraw@candoskills.org",
    platforms=["any"],
    classifiers=["Development Status :: 4 - Beta",
    "Environment :: Web Environment",
    "Intended Audience :: End Users/Desktop",
    "License :: OSI Approved :: GNU General Public License (GPL)",
    "Operating System :: OS Independent",
    "Programming Language :: Python",
    "Programming Language :: Zope",
    "Topic :: Education",
    "Topic :: Office/Business :: Scheduling"],
    package_dir={'': 'src'},
    packages=find_packages('src'),
    install_requires=['PasteDeploy',
                      'PasteScript',
                      'jquery.layer',
                      'lxml',
                      'pytz',
                      'Reportlab',
                      'rwproperty',
                      'schooltool >= 1.3.0',
                      'schooltool.gradebook>=0.6.2',
                      'zope.annotation',
                      'zope.browsermenu',
                      'zope.catalog',
                      'zope.component',
                      'zope.container',
                      'zope.contentprovider',
                      'zope.copypastemove',
                      'zope.dublincore',
                      'zope.event',
                      'zope.formlib',
                      'zope.i18n',
                      'zope.i18nmessageid >= 3.4.2',
                      'zope.interface',
                      'zope.intid',
                      'zope.keyreference',
                      'zope.lifecycleevent',
                      'zope.location',
                      'zope.publisher',
                      'zope.schema',
                      'zope.security',
                      'zope.session',
                      'zope.traversing',
                      'zope.viewlet',
                      'zope.app.apidoc',
                      'zope.app.basicskin',
                      'zope.app.dependable',
                      'zope.app.generations',
                      'zope.app.locales',
                      'zope.app.onlinehelp',
                      'zope.app.pagetemplate',
                      'zope.app.publication',
                      'zope.app.renderer',
                      'zope.app.tree',
                      'zope.app.zcmlfiles',
                      'z3c.form',
                      'z3c.formjs >= 0.4.1',
                      'z3c.layer',
                      'z3c.menu.simple',
                      'z3c.pagelet',
                      'z3c.template',
                      'z3c.zrtresource'],
    extras_require={'test': ['zope.app.testing',
                             'zope.site',
                             'zope.testing',
                             'zope.testbrowser']},
    dependency_links=['http://ftp.schooltool.org/schooltool/1.4/'],
    entry_points = """
    [schooltool.instance_type]
    cando2007 = cando.cando2007
    """,
    include_package_data=True
    )