Skip to content

Commit

Permalink
build: remove tests from package
Browse files Browse the repository at this point in the history
remove the tests folder from the pypi package
  • Loading branch information
taylor-cedar committed Jul 15, 2021
1 parent c9ca2a1 commit 3c6df55
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# Contributing to django-bulk-load
Contributing is currently limited to Cedar employees. Unfortunately,
we don't have the bandwidth to review other contributions currently, so all
PRs from the public will be closed.
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
recursive-exclude tests *
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -177,4 +177,8 @@ bulk_select_model_dicts(
filter_data: Iterable[Sequence],
skip_filter_transform=False,
)
```
```
## Contributing
We are not accepting pull requests from anyone outside Cedar employees at this time.
All pull requests will be closed.
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,9 @@
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
packages=setuptools.find_packages(),
packages=setuptools.find_packages(
exclude=["*.tests", "*.tests.*", "tests.*", "tests"]
),
python_requires=">=3.6",
install_requires=[
"django>=2.2",
Expand Down

0 comments on commit 3c6df55

Please sign in to comment.