a827f338d5
setuptools-scm manages the MANIFEST automatically considering all committed files, we only need to define exceptions from that rule. setup.py: remove package_data, not needed if we use: - include_package_data=True - exclude_package_data (if needed)
10 lines
389 B
Plaintext
10 lines
389 B
Plaintext
# stuff we need to include into the sdist is handled automatically by
|
|
# setuptools_scm - it includes all git-committed files.
|
|
# but we want to include some non-committed files/dirs needed in
|
|
# the sdist and exclude some committed files/dirs not needed in the sdist:
|
|
exclude .gitattributes .gitignore .travis.yml
|
|
exclude manage.py requirements.txt
|
|
prune .tx
|
|
prune logo
|
|
prune scripts/travis
|