Client: build process
Patch: jfarrell
Fixes python build to include missing README.md and also run packaging under
vagrant images
*.log
*.trs
*.suo
+*.pyc
*.cache
*.user
*.ipch
/test/log/
/test/test.log
/test/py.twisted/_trial_temp/
-/test/py.twisted/test_suite.pyc
-/test/py.tornado/*.pyc
/test/rb/Gemfile.lock
/tutorial/cpp/TutorialClient
/tutorial/cpp/TutorialServer
[install]
optimize = 1
+[metadata]
+description-file = README.md
from distutils.command.build_ext import build_ext
from distutils.errors import CCompilerError, DistutilsExecError, DistutilsPlatformError
+# Fix to build sdist under vagrant
+import os
+if 'vagrant' in str(os.environ):
+ del os.link
+
include_dirs = []
if sys.platform == 'win32':
include_dirs.append('compat/win32')