1 parent 019c8fa commit 19f1069Copy full SHA for 19f1069
1 file changed
setup.py
@@ -3,10 +3,13 @@
3
setup(
4
name="django-smart-storages",
5
version="0.1.0",
6
- packages=find_packages(),
+ packages=find_packages(include=["smart_storages", "smart_storages.*"]),
7
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
+ "django-storages>=1.14.3", # S3 backend dependency
+ ],
+ classifiers=[
11
+ "Framework :: Django",
12
+ "Programming Language :: Python :: 3",
13
+ "Intended Audience :: Developers",
14
],
15
)
0 commit comments