-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #80 from bobleesj/remove-old-files
Remove old files (gitarchive, gitattributes, devutils), standardize pyproject.toml, MANIFEST
- Loading branch information
Showing
5 changed files
with
17 additions
and
102 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,12 @@ | ||
recursive-include src/diffpy * | ||
recursive-exclude src/diffpy *.py[co] *.so | ||
recursive-include docs *.rst conf.py Makefile make.bat | ||
|
||
recursive-include src/extensions/libpdffit2 *.[ch]* | ||
recursive-include src/extensions/pdffit2module *.[ch]* | ||
recursive-include src/examples * | ||
include AUTHORS.rst | ||
include diffpy.pdffit2/version.py | ||
include LICENSE.rst | ||
include README.rst | ||
include requirements/ | ||
prune src/extensions/libpdffit2/tests | ||
global-exclude .gitattributes .gitignore .gitarchive.cfg | ||
global-exclude .DS_Store | ||
recursive-exclude * __pycache__ | ||
recursive-exclude * *.py[co] | ||
|
||
# If including data files in the package, add them like: | ||
# include path/to/data_file | ||
|
||
# Avoid user content in setup.cfg to make distribution reproducible. | ||
exclude setup.cfg | ||
|
||
# Exclude git-tracked files spuriously added by setuptools_scm | ||
exclude .coveragerc | ||
prune devutils | ||
prune doc | ||
graft src | ||
graft tests | ||
graft requirements | ||
|
||
include AUTHORS.rst LICENSE*.rst README.rst | ||
|
||
# Exclude all bytecode files and __pycache__ directories | ||
global-exclude *.py[cod] # Exclude all .pyc, .pyo, and .pyd files. | ||
global-exclude .DS_Store # Exclude Mac filesystem artifacts. | ||
global-exclude __pycache__ # Exclude Python cache directories. | ||
global-exclude .git* # Exclude git files and directories. | ||
global-exclude .idea # Exclude PyCharm project settings. |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters