# Pastebin RaOPar2f 17 import setuptools 18 19 # In python < 2.7.4, a lazy loading of package `pbr` will break 20 # setuptools if some other modules registered functions in `atexit`. 21 # solution from: http://bugs.python.org/issue15881#msg170215 22 try: 23 import multiprocessing # noqa 24 except ImportError: 25 pass 26 27 setuptools.setup( 28 setup_requires=['pbr>=1.8'], ~ 29 pbr=True, + 30 package_data={'syntribos': ['data/*.txt']}, + 31 include_package_data=True)