File tree Expand file tree Collapse file tree 2 files changed +8
-1
lines changed
Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,8 @@ Features:
1111
1212Fixed:
1313
14+ - Make roundup play nice with setup tools (for using with virtualenv)
15+ (Pradip Caulagi)
1416- [minor] Template responsive: make demo.py work out of the box with it,
1517 by setting the static_files config.ini setting to "static".
1618 Footer: link fixed and hardcoded last modfied date removed. (Bernhard Reiter)
Original file line number Diff line number Diff line change 11#! /usr/bin/env python
2+ # -*- coding: utf-8 -*-
23#
34# Copyright (c) 2001 Bizar Software Pty Ltd (http://www.bizarsoftware.com.au/)
45# This module is free software, and you may redistribute it and/or modify
2425from roundup .dist .command .build import build , list_message_files
2526from roundup .dist .command .bdist_rpm import bdist_rpm
2627from roundup .dist .command .install_lib import install_lib
27- from distutils .core import setup
28+
29+ try :
30+ from setuptools import setup
31+ except ImportError :
32+ from distutils .core import setup
2833
2934import sys , os
3035from glob import glob
You can’t perform that action at this time.
0 commit comments