Skip to content

Commit

Permalink
Redirect Python manifest to less ambiguous filename
Browse files Browse the repository at this point in the history
  • Loading branch information
soltanmm committed Jan 7, 2016
1 parent 974e8d5 commit b7e7b3f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions INVENTORY.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,4 @@
* [setup.cfg](setup.cfg)
* [setup.py](setup.py)
* [tox.ini](tox.ini)
* [PYTHON-MANIFEST.in](PYTHON-MANIFEST.in)
File renamed without changes.
4 changes: 4 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,10 @@
from distutils import core as _core
from distutils import extension as _extension
import setuptools
from setuptools.command import egg_info

# Redirect the manifest template from MANIFEST.in to PYTHON-MANIFEST.in.
egg_info.manifest_maker.template = 'PYTHON-MANIFEST.in'

PYTHON_STEM = './src/python/grpcio/'
CORE_INCLUDE = ('./include', './',)
Expand Down

0 comments on commit b7e7b3f

Please sign in to comment.