15 lines
349 B
Plaintext
15 lines
349 B
Plaintext
# 保留安装和说明文件
|
||
include README.md
|
||
include LICENSE
|
||
include requirements.txt
|
||
|
||
# 包含二进制文件
|
||
recursive-include hertz_studio_django_xxx *.py
|
||
recursive-include hertz_studio_django_xxx/migrations *.py
|
||
|
||
|
||
|
||
# 排除源代码和缓存(但已通过include保留了必要的.py文件)
|
||
global-exclude *.pyc
|
||
global-exclude __pycache__
|