Commit 2e980856 by Ned Batchelder

Stop pbr from writing ChangeLog and AUTHORS

parent 22d96a86
...@@ -11,8 +11,14 @@ A collection of code quality tools: ...@@ -11,8 +11,14 @@ A collection of code quality tools:
""" """
import os
from setuptools import setup from setuptools import setup
# pbr does some things we don't need. Turn them off the only way pbr gives us.
os.environ['SKIP_GENERATE_AUTHORS'] = '1'
os.environ['SKIP_WRITE_GIT_CHANGELOG'] = '1'
setup( setup(
setup_requires=['pbr>=1.9', 'setuptools>=17.1'], setup_requires=['pbr>=1.9', 'setuptools>=17.1'],
pbr=True, pbr=True,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment