diff options
author | Matthäus G. Chajdas <dev@anteru.net> | 2019-11-29 20:21:03 +0100 |
---|---|---|
committer | Matthäus G. Chajdas <dev@anteru.net> | 2019-11-29 20:21:15 +0100 |
commit | 01f05b4dc5155745d401f31545fc1a089e8a3710 (patch) | |
tree | 1d2e9d50bba936dcaa7fc78474c7a52c871f95d3 | |
parent | 8ddc45d7f0f6ba918b9c44f3da42596b320360b6 (diff) | |
download | pygments-git-01f05b4dc5155745d401f31545fc1a089e8a3710.tar.gz |
Use wildcards to include the pygments module.
This should fix PR#1316 properly.
-rwxr-xr-x | setup.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -35,7 +35,7 @@ setup( description = 'Pygments is a syntax highlighting package written in Python.', long_description = __doc__, keywords = 'syntax highlighting', - packages = find_packages(exclude=['tests']), + packages = find_packages(include=['pygments', 'pygments.*']), entry_points = { 'console_scripts': ['pygmentize = pygments.cmdline:main'], }, |