Skip to content

Commit 9118575

Browse files
committed
adopt requirements to finder branch
1 parent aa73961 commit 9118575

File tree

1 file changed

+8
-20
lines changed

1 file changed

+8
-20
lines changed

setup.py

Lines changed: 8 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,8 @@
55

66

77
REQUIREMENTS = [
8-
'django>=3.2,<5.1',
9-
'django-polymorphic',
10-
'easy-thumbnails[svg]',
8+
'django>=5.2',
9+
'django-entangled',
1110
]
1211

1312

@@ -26,22 +25,11 @@
2625
'Operating System :: OS Independent',
2726
'Programming Language :: Python',
2827
'Programming Language :: Python :: 3',
29-
'Programming Language :: Python :: 3.8',
30-
'Programming Language :: Python :: 3.9',
3128
'Programming Language :: Python :: 3.10',
3229
'Programming Language :: Python :: 3.11',
30+
'Programming Language :: Python :: 3.12',
3331
'Framework :: Django',
34-
'Framework :: Django :: 3.2',
35-
'Framework :: Django :: 4.0',
36-
'Framework :: Django :: 4.1',
37-
'Framework :: Django :: 4.2',
38-
'Framework :: Django CMS',
39-
'Framework :: Django CMS :: 3.8',
40-
'Framework :: Django CMS :: 3.9',
41-
'Framework :: Django CMS :: 3.10',
42-
'Framework :: Django CMS :: 3.11',
43-
'Framework :: Django CMS :: 4.0',
44-
'Framework :: Django CMS :: 4.1',
32+
'Framework :: Django :: 5.2',
4533
'Topic :: Internet :: WWW/HTTP',
4634
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
4735
'Topic :: Software Development',
@@ -52,21 +40,21 @@
5240
setup(
5341
name='django-filer',
5442
version=__version__,
55-
author='Divio AG',
56-
author_email='info@divio.ch',
43+
author='Django CMS Association and contributors',
44+
author_email='info@django-cms.org',
5745
maintainer='Django CMS Association and contributors',
5846
maintainer_email='[email protected]',
5947
url='https://github.com/django-cms/django-filer',
6048
license='BSD-3-Clause',
6149
description='A file management application for django that makes handling '
6250
'of files and images a breeze.',
63-
long_description=open('README.rst').read(),
51+
long_description=open('README-Finder.md').read(),
6452
packages=find_packages(),
6553
include_package_data=True,
6654
zip_safe=False,
6755
install_requires=REQUIREMENTS,
6856
extras_require=EXTRA_REQUIREMENTS,
69-
python_requires='>=3.8',
57+
python_requires='>=3.10',
7058
classifiers=CLASSIFIERS,
7159
test_suite='tests.settings.run',
7260
)

0 commit comments

Comments
 (0)