~ubuntu-branches/ubuntu/saucy/pyflakes/saucy

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Package Import Robot
  • Author(s): Dmitrijs Ledkovs
  • Date: 2013-08-04 23:49:01 UTC
  • mfrom: (1.1.9) (3.3.2 sid)
  • Revision ID: package-import@ubuntu.com-20130804234901-0sf9rh5q216p1zfo
Tags: 0.7.3-1
* Switch to dh-python.
* New upstream release (Closes: #718728)
  - "Fix undefined name for generator expression and dict/set
  comprehension at class level"
  - drop all patches

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
from __future__ import with_statement
5
5
 
6
6
import os.path
7
 
import sys
8
7
 
9
8
try:
10
9
    from setuptools import setup
18
17
            'console_scripts': ['pyflakes = pyflakes.api:main'],
19
18
        },
20
19
    }
21
 
    if sys.version_info < (2, 7):
22
 
        extra['tests_require'] = ['unittest2']
23
20
 
24
21
 
25
22
def get_version(fname=os.path.join('pyflakes', '__init__.py')):