Skip to content

Commit 19f1069

Browse files
committed
feat
1 parent 019c8fa commit 19f1069

1 file changed

Lines changed: 7 additions & 4 deletions

File tree

setup.py

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,13 @@
33
setup(
44
name="django-smart-storages",
55
version="0.1.0",
6-
packages=find_packages(),
6+
packages=find_packages(include=["smart_storages", "smart_storages.*"]),
77
install_requires=[
8-
"django>=4.2",
9-
"django-storages>=1.14.3", # ✅ this is the key dependency
10-
"boto3>=1.28.0", # optional, but usually required for S3
8+
"django-storages>=1.14.3", # S3 backend dependency
9+
],
10+
classifiers=[
11+
"Framework :: Django",
12+
"Programming Language :: Python :: 3",
13+
"Intended Audience :: Developers",
1114
],
1215
)

0 commit comments

Comments
 (0)