~loggerhead-team/loggerhead/trunk-rich

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Michael Hudson
  • Date: 2008-07-31 04:49:15 UTC
  • mto: This revision was merged to the branch mainline in revision 188.
  • Revision ID: michael.hudson@canonical.com-20080731044915-x54ly6qev5sdwlm7
some tweaks

Show diffs side-by-side

added added

removed removed

Lines of Context:
15
15
# You should have received a copy of the GNU General Public License
16
16
# along with this program; if not, write to the Free Software
17
17
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
18
 
18
19
"""Loggerhead is a web viewer for projects in bazaar"""
19
20
 
 
21
 
20
22
from distutils.core import setup
21
 
from distutils.command.install_data import install_data
22
 
import os
23
23
import loggerhead
24
24
 
25
25
 
31
31
    maintainer = "Michael Hudson",
32
32
    maintainer_email = "michael.hudson@canonical.com",
33
33
    scripts = ["start-loggerhead", "stop-loggerhead", "serve-branches"],
34
 
    packages = ["loggerhead",
35
 
               ],
36
 
    package_data = {"loggerhead":["templates/*"]},
37
 
    data_files=[
38
 
                ('share/man/man1',['start-loggerhead.1', 'stop-loggerhead.1']),
39
 
                ('share/doc/loggerhead', ['loggerhead.conf.example'])
40
 
               ],
41
 
    cmdclass={'install_data':install_data}
 
34
    packages = ["loggerhead"],
 
35
    package_data = {"loggerhead":["templates/*.pt"]},
 
36
    data_files = [
 
37
        ('share/man/man1',['start-loggerhead.1', 'stop-loggerhead.1']),
 
38
        ('share/doc/loggerhead', ['loggerhead.conf.example']),
 
39
        ],
42
40
    )
43