~ubuntu-branches/ubuntu/vivid/oslo-sphinx/vivid-proposed

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Package Import Robot
  • Author(s): Chuck Short
  • Date: 2014-06-23 10:41:55 UTC
  • mfrom: (1.1.3)
  • Revision ID: package-import@ubuntu.com-20140623104155-ei0uhyl7qaczw5d9
Tags: 2.2.0.0~a1-0ubuntu1
* New upstream release.
* debian/control: Removed python-d2to1.

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
# THIS FILE IS MANAGED BY THE GLOBAL REQUIREMENTS REPO - DO NOT EDIT
18
18
import setuptools
19
19
 
 
20
# In python < 2.7.4, a lazy loading of package `pbr` will break
 
21
# setuptools if some other modules registered functions in `atexit`.
 
22
# solution from: http://bugs.python.org/issue15881#msg170215
 
23
try:
 
24
    import multiprocessing  # noqa
 
25
except ImportError:
 
26
    pass
 
27
 
20
28
setuptools.setup(
21
29
    setup_requires=['pbr'],
22
30
    pbr=True)