
Add missing files and tweaks so that the automated CI/flake8/pep8/docs/... and such work correctly. Change-Id: I838b02bf0037569065b7c7914f4a68b92d7ebd6a
16 lines
366 B
Python
Executable File
16 lines
366 B
Python
Executable File
#!/usr/bin/env python
|
|
|
|
import setuptools
|
|
|
|
# In python < 2.7.4, a lazy loading of package `pbr` will break
|
|
# setuptools if some other modules registered functions in `atexit`.
|
|
# solution from: http://bugs.python.org/issue15881#msg170215
|
|
try:
|
|
import multiprocessing # noqa
|
|
except ImportError:
|
|
pass
|
|
|
|
setuptools.setup(
|
|
setup_requires=['pbr'],
|
|
pbr=True)
|