Skip to content

Commit

Permalink
Remove stale references to google app engine
Browse files Browse the repository at this point in the history
  • Loading branch information
alisaifee committed Mar 8, 2023
1 parent 0c6ceb6 commit ab62ed6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pytest.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[pytest]
asyncio_mode = auto
norecursedirs = google google_appengine build *.egg
norecursedirs = build *.egg
markers =
unit: mark a test as a unit test.
integration: mark a test as an integration test.
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ tag_prefix =
parentdir_prefix = limits-

[flake8]
exclude = build/**,google_appengine/**,doc/**,_version.py,version.py,versioneer.py
exclude = build/**,doc/**,_version.py,version.py,versioneer.py
max_line_length=100
ignore = W503

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ def get_requirements(req_file):
classifiers=[k for k in open("CLASSIFIERS").read().split("\n") if k],
description="Rate limiting utilities",
long_description=open("README.rst").read(),
packages=find_packages(exclude=["google.*", "google", "tests*"]),
packages=find_packages(exclude=["tests*"]),
python_requires=">=3.7",
extras_require=EXTRA_REQUIREMENTS,
include_package_data=True,
Expand Down

0 comments on commit ab62ed6

Please sign in to comment.