~ubuntu-branches/ubuntu/vivid/flufl.bounce/vivid

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Package Import Robot
  • Author(s): Barry Warsaw
  • Date: 2014-08-18 12:11:42 UTC
  • mfrom: (1.1.4)
  • Revision ID: package-import@ubuntu.com-20140818121142-mhyw2chgj4pt1uul
Tags: 2.3-1
* New upstream release.
* d/copyright: Update copyright years.
* d/control:
  - Updated maintainer email address.
  - Updated Build-Depends.
  - Updated Standards-Version with no further changes needed.
  - wrap-and-sort
* d/rules: Port to --buildsystem=pybuild
* d/*.install: Removed.
* d/patches/setup.patch: Removed.
* d/python-flufl.bounce.links: Removed.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2004-2013 by Barry A. Warsaw
 
1
# Copyright (C) 2004-2014 by Barry A. Warsaw
2
2
#
3
3
# This file is part of flufl.bounce.
4
4
#
15
15
# You should have received a copy of the GNU Lesser General Public License
16
16
# along with flufl.bounce.  If not, see <http://www.gnu.org/licenses/>.
17
17
 
18
 
## import distribute_setup
19
 
## distribute_setup.use_setuptools()
 
18
import sys
20
19
 
21
20
from setup_helpers import (
22
21
    description, find_doctests, get_version, long_description, require_python)
31
30
doctests = [doctest for doctest in find_doctests()
32
31
            if 'tests/data' not in doctest]
33
32
 
 
33
install_requires = ['zope.interface']
 
34
if sys.version_info < (3, 4):
 
35
    install_requires.append('enum34')
 
36
 
34
37
 
35
38
setup(
36
39
    name='flufl.bounce',
45
48
    license='LGPLv3',
46
49
    url='http://launchpad.net/flufl.bounce',
47
50
    download_url='https://launchpad.net/flufl.bounce/+download',
48
 
    install_requires = [
49
 
        'flufl.enum',
50
 
        'zope.interface',
51
 
        ],
 
51
    install_requires=install_requires,
52
52
    test_suite='flufl.bounce.tests',
53
53
    classifiers=[
54
54
        'Development Status :: 5 - Production/Stable',