~ubuntu-branches/ubuntu/quantal/enigmail/quantal-security

« back to all changes in this revision

Viewing changes to mozilla/python/blessings/setup.py

  • Committer: Package Import Robot
  • Author(s): Chris Coulson
  • Date: 2013-09-13 16:02:15 UTC
  • mfrom: (0.12.16)
  • Revision ID: package-import@ubuntu.com-20130913160215-u3g8nmwa0pdwagwc
Tags: 2:1.5.2-0ubuntu0.12.10.1
* New upstream release v1.5.2 for Thunderbird 24

* Build enigmail using a stripped down Thunderbird 17 build system, as it's
  now quite difficult to build the way we were doing previously, with the
  latest Firefox build system
* Add debian/patches/no_libxpcom.patch - Don't link against libxpcom, as it
  doesn't exist anymore (but exists in the build system)
* Add debian/patches/use_sdk.patch - Use the SDK version of xpt.py and
  friends
* Drop debian/patches/ipc-pipe_rename.diff (not needed anymore)
* Drop debian/patches/makefile_depth.diff (not needed anymore)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
import sys
 
2
 
 
3
from setuptools import setup, find_packages
 
4
 
 
5
 
 
6
extra_setup = {}
 
7
if sys.version_info >= (3,):
 
8
    extra_setup['use_2to3'] = True
 
9
 
 
10
setup(
 
11
    name='blessings',
 
12
    version='1.3',
 
13
    description='A thin, practical wrapper around terminal formatting, positioning, and more',
 
14
    long_description=open('README.rst').read(),
 
15
    author='Erik Rose',
 
16
    author_email='erikrose@grinchcentral.com',
 
17
    license='MIT',
 
18
    packages=find_packages(exclude=['ez_setup']),
 
19
    tests_require=['Nose'],
 
20
    url='https://github.com/erikrose/blessings',
 
21
    include_package_data=True,
 
22
    classifiers=[
 
23
        'Intended Audience :: Developers',
 
24
        'Natural Language :: English',
 
25
        'Development Status :: 5 - Production/Stable',
 
26
        'Environment :: Console',
 
27
        'Environment :: Console :: Curses',
 
28
        'License :: OSI Approved :: MIT License',
 
29
        'Operating System :: POSIX',
 
30
        'Programming Language :: Python :: 2',
 
31
        'Programming Language :: Python :: 2.5',
 
32
        'Programming Language :: Python :: 2.6',
 
33
        'Programming Language :: Python :: 2.7',
 
34
        'Programming Language :: Python :: 3',
 
35
        'Programming Language :: Python :: 3.2',
 
36
        'Topic :: Software Development :: Libraries',
 
37
        'Topic :: Software Development :: User Interfaces',
 
38
        'Topic :: Terminals'
 
39
        ],
 
40
    keywords=['terminal', 'tty', 'curses', 'ncurses', 'formatting', 'style', 'color', 'console'],
 
41
    **extra_setup
 
42
)