File tree Expand file tree Collapse file tree 1 file changed +12
-14
lines changed Expand file tree Collapse file tree 1 file changed +12
-14
lines changed Original file line number Diff line number Diff line change 1- include AUTHORS.rst
2- include LICENSE
3- include README.rst
4- include requirements.txt
5-
6- recursive-exclude * __pycache__
7- recursive-exclude * *.py[co]
8-
9- recursive-include docs *.rst conf.py Makefile make.bat
10-
11- include diffpy.structure/version.py
12-
13- # If including data files in the package, add them like:
14- # include path/to/data_file
1+ graft src
2+ graft tests
3+ graft requirements
4+
5+ include AUTHORS.rst LICENSE*.rst README.rst
6+
7+ # Exclude all bytecode files and __pycache__ directories
8+ global-exclude *.py[cod] # Exclude all .pyc, .pyo, and .pyd files.
9+ global-exclude .DS_Store # Exclude Mac filesystem artifacts.
10+ global-exclude __pycache__ # Exclude Python cache directories.
11+ global-exclude .git* # Exclude git files and directories.
12+ global-exclude .idea # Exclude PyCharm project settings.
You can’t perform that action at this time.
0 commit comments