Skip to content

Commit 669f94a

Browse files
author
Ryan Whitmore
committed
Update the manifest file so that the sdist doesn't include all git-tracked files by default.
1 parent 5efb18d commit 669f94a

File tree

3 files changed

+47
-1
lines changed

3 files changed

+47
-1
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,4 +199,4 @@ tags
199199

200200
# End of https://www.gitignore.io/api/vim,emacs,python
201201

202-
.benchmarks/
202+
.benchmarks/

MANIFEST.in

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,48 @@ global-exclude *.pyo
55
global-exclude *.orig
66
global-exclude *.rej
77
global-exclude *~
8+
9+
# IDE and editor files
10+
global-exclude .vscode
11+
global-exclude .idea
12+
global-exclude *.swp
13+
global-exclude *.swo
14+
global-exclude .ropeproject
15+
16+
# Test and coverage files
17+
global-exclude .coverage
18+
global-exclude .pytest_cache
19+
global-exclude .tox
20+
global-exclude htmlcov
21+
global-exclude .nox
22+
23+
# Build artifacts
24+
global-exclude build
25+
global-exclude dist
26+
global-exclude *.egg-info
27+
global-exclude .eggs
28+
29+
# Documentation build files
30+
global-exclude docs/_build
31+
global-exclude docs/.doctrees
32+
33+
# Environment and configuration files
34+
global-exclude .env
35+
global-exclude .venv
36+
global-exclude venv
37+
global-exclude env
38+
global-exclude .python-version
39+
40+
# Git and version control
41+
global-exclude .git
42+
global-exclude .gitignore
43+
global-exclude .gitattributes
44+
45+
# CI/CD and development workflow files
46+
global-exclude .github
47+
global-exclude .pre-commit-config.yaml
48+
global-exclude tox.ini
49+
global-exclude .pylintrc
50+
global-exclude Makefile
51+
global-exclude requirements.txt
52+
global-exclude MIGRATION_CHECKLIST.md

unification/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
from importlib.metadata import version
2+
23
from .core import assoc, reify, unify
34
from .more import unifiable
45
from .variable import Var, isvar, var, variables, vars

0 commit comments

Comments
 (0)