Skip to content

Commit 0c8e78b

Browse files
committed
Delete older files
1 parent 2183645 commit 0c8e78b

12 files changed

+119
-456
lines changed

.coveragerc

-22
This file was deleted.

.gitarchive.cfg

-5
This file was deleted.

.gitattributes

-7
This file was deleted.

.idea/.gitignore

-8
This file was deleted.

.travis.yml

-123
This file was deleted.

AUTHORS.txt

-9
This file was deleted.

CHANGELOG.md

-33
This file was deleted.

MANIFEST.in

+10-14
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,12 @@
1-
recursive-include src *
2-
include AUTHORS.txt LICENSE*.txt README.rst
3-
recursive-exclude src *.pyc
4-
global-exclude .gitattributes .gitignore .gitarchive.cfg
5-
global-exclude .DS_Store
1+
graft src
2+
graft tests
3+
graft requirements
64

7-
# Avoid user content in setup.cfg to make distribution reproducible.
8-
exclude setup.cfg
5+
include AUTHORS.rst LICENSE*.rst README.rst
96

10-
# Exclude git-tracked files spuriously added by setuptools_scm
11-
exclude .codecov.yml
12-
exclude .coveragerc
13-
exclude .travis*
14-
prune conda-recipe
15-
prune devutils
16-
prune doc
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.

0 commit comments

Comments
 (0)