Skip to content

Commit c9d5e86

Browse files
committed
Only include aiocache in packages (#682)
1 parent 9978cd1 commit c9d5e86

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import re
22
from pathlib import Path
33

4-
from setuptools import setup, find_packages
4+
from setuptools import setup
55

66
p = Path(__file__).with_name("aiocache") / "__init__.py"
77
try:
@@ -29,7 +29,7 @@
2929
"Programming Language :: Python :: 3.11",
3030
"Framework :: AsyncIO",
3131
],
32-
packages=find_packages(),
32+
packages=("aiocache",),
3333
install_requires=None,
3434
extras_require={
3535
"redis": ["redis>=4.2.0"],

0 commit comments

Comments
 (0)