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

« back to all changes in this revision

Viewing changes to .pc/setup.patch/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
2
 
#
3
 
# This file is part of flufl.bounce.
4
 
#
5
 
# flufl.bounce is free software: you can redistribute it and/or modify it
6
 
# under the terms of the GNU Lesser General Public License as published by the
7
 
# Free Software Foundation, either version 3 of the License, or (at your
8
 
# option) any later version.
9
 
#
10
 
# flufl.bounce is distributed in the hope that it will be useful, but WITHOUT
11
 
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12
 
# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License
13
 
# for more details.
14
 
#
15
 
# You should have received a copy of the GNU Lesser General Public License
16
 
# along with flufl.bounce.  If not, see <http://www.gnu.org/licenses/>.
17
 
 
18
 
import distribute_setup
19
 
distribute_setup.use_setuptools()
20
 
 
21
 
from setup_helpers import (
22
 
    description, find_doctests, get_version, long_description, require_python)
23
 
from setuptools import setup, find_packages
24
 
 
25
 
 
26
 
require_python(0x20600f0)
27
 
__version__ = get_version('flufl/bounce/__init__.py')
28
 
 
29
 
 
30
 
# Don't try to fix the tests messages.
31
 
doctests = [doctest for doctest in find_doctests()
32
 
            if 'tests/data' not in doctest]
33
 
 
34
 
 
35
 
setup(
36
 
    name='flufl.bounce',
37
 
    version=__version__,
38
 
    namespace_packages=['flufl'],
39
 
    packages=find_packages(),
40
 
    include_package_data=True,
41
 
    maintainer='Barry Warsaw',
42
 
    maintainer_email='barry@python.org',
43
 
    description=description('README.rst'),
44
 
    long_description=long_description('README.rst', 'flufl/bounce/NEWS.rst'),
45
 
    license='LGPLv3',
46
 
    url='http://launchpad.net/flufl.bounce',
47
 
    download_url='https://launchpad.net/flufl.bounce/+download',
48
 
    install_requires = [
49
 
        'flufl.enum',
50
 
        'zope.interface',
51
 
        ],
52
 
    test_suite='flufl.bounce.tests',
53
 
    classifiers=[
54
 
        'Development Status :: 5 - Production/Stable',
55
 
        'Intended Audience :: Developers',
56
 
        'License :: OSI Approved :: '
57
 
            'GNU Lesser General Public License v3 or later (LGPLv3+)',
58
 
        'Operating System :: POSIX',
59
 
        'Operating System :: Microsoft :: Windows',
60
 
        'Operating System :: MacOS :: MacOS X',
61
 
        'Programming Language :: Python',
62
 
        'Programming Language :: Python :: 2.6',
63
 
        'Programming Language :: Python :: 2.7',
64
 
        'Programming Language :: Python :: 3',
65
 
        'Topic :: Software Development :: Libraries',
66
 
        'Topic :: Communications :: Email',
67
 
        'Topic :: Software Development :: Libraries :: Python Modules',
68
 
        ]
69
 
    )