Skip to content

Commit 7746ef9

Browse files
committed
update comments
1 parent c2b50d2 commit 7746ef9

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

{{cookiecutter.github_project_name}}/setupbase.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
from os.path import join as pjoin
1313
import io
1414
import os
15-
import fnmatch
1615
import functools
1716
import pipes
1817
import re
@@ -148,6 +147,11 @@ def create_cmdclass(prerelease_cmd=None, package_data_spec=None,
148147
We use specs so that we can find the files *after* the build
149148
command has run.
150149
The glob patterns can contain at most one '**' per pattern.
150+
The package data glob patterns should be relative paths from the package
151+
folder containing the __init__.py file, which is given as the package
152+
name.
153+
The data files glob patterns should be absolute paths or relative paths
154+
from the root directory of the repository.
151155
"""
152156
wrapped = [prerelease_cmd] if prerelease_cmd else []
153157
if package_data_spec or data_files_spec:

0 commit comments

Comments
 (0)