Commit 3337ee64 authored by Jason Madden's avatar Jason Madden Committed by GitHub

Merge pull request #100 from zopefoundation/issue99

Exclude the 'terryfy' directory from wheels and sdists
parents 199da4f5 e49d9f4b
prune terryfy
include *.txt
include *.rst
include *.sh
......@@ -15,6 +17,7 @@ global-exclude coverage.xml
prune docs/_build
prune persistent/__pycache__
include .coveragerc
include .travis.yml
include buildout.cfg
......
......@@ -109,7 +109,9 @@ setup(name='persistent',
url="https://github.com/zopefoundation/persistent/",
license="ZPL 2.1",
platforms=["any"],
packages=find_packages(),
# Make sure we don't get 'terryfy' included in wheels
# created on macOS CI
packages=find_packages(include=("persistent",)),
include_package_data=True,
zip_safe=False,
ext_modules=ext_modules,
......
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