|
3 | 3 |
|
4 | 4 | from polymodels import __version__ |
5 | 5 |
|
6 | | -github_url = 'https://github.com/charettes/django-polymodels' |
7 | | -long_desc = open('README.rst').read() |
| 6 | +github_url = "https://github.com/charettes/django-polymodels" |
| 7 | +long_desc = open("README.rst").read() |
8 | 8 |
|
9 | 9 | setup( |
10 | | - name='django-polymodels', |
| 10 | + name="django-polymodels", |
11 | 11 | version=__version__, |
12 | | - description='Polymorphic models implementation for django', |
| 12 | + description="Polymorphic models implementation for django", |
13 | 13 | long_description=long_desc, |
14 | | - long_description_content_type='text/x-rst', |
| 14 | + long_description_content_type="text/x-rst", |
15 | 15 | url=github_url, |
16 | | - author='Simon Charette', |
17 | | - author_email='charette.s@gmail.com', |
18 | | - install_requires=( |
19 | | - 'Django>=3.2', |
20 | | - ), |
21 | | - packages=find_packages(exclude=['tests', 'tests.*']), |
| 16 | + author="Simon Charette", |
| 17 | + author_email="charette.s@gmail.com", |
| 18 | + install_requires=("Django>=4.2",), |
| 19 | + packages=find_packages(exclude=["tests", "tests.*"]), |
22 | 20 | include_package_data=True, |
23 | | - license='MIT License', |
| 21 | + license="MIT License", |
24 | 22 | classifiers=[ |
25 | | - 'Development Status :: 5 - Production/Stable', |
26 | | - 'Environment :: Web Environment', |
27 | | - 'Framework :: Django', |
28 | | - 'Framework :: Django :: 3.2', |
29 | | - 'Framework :: Django :: 4.0', |
30 | | - 'Framework :: Django :: 4.1', |
31 | | - 'Framework :: Django :: 4.2', |
32 | | - 'Intended Audience :: Developers', |
33 | | - 'License :: OSI Approved :: MIT License', |
34 | | - 'Operating System :: OS Independent', |
35 | | - 'Programming Language :: Python', |
36 | | - 'Programming Language :: Python :: 3.7', |
37 | | - 'Programming Language :: Python :: 3.8', |
38 | | - 'Programming Language :: Python :: 3.9', |
39 | | - 'Programming Language :: Python :: 3.10', |
40 | | - 'Topic :: Software Development :: Libraries :: Python Modules' |
| 23 | + "Development Status :: 5 - Production/Stable", |
| 24 | + "Environment :: Web Environment", |
| 25 | + "Framework :: Django", |
| 26 | + "Framework :: Django :: 4.2", |
| 27 | + "Framework :: Django :: 5.0", |
| 28 | + "Framework :: Django :: 5.1", |
| 29 | + "Framework :: Django :: 5.2", |
| 30 | + "Intended Audience :: Developers", |
| 31 | + "License :: OSI Approved :: MIT License", |
| 32 | + "Operating System :: OS Independent", |
| 33 | + "Programming Language :: Python", |
| 34 | + "Programming Language :: Python :: 3.9", |
| 35 | + "Programming Language :: Python :: 3.10", |
| 36 | + "Programming Language :: Python :: 3.11", |
| 37 | + "Programming Language :: Python :: 3.12", |
| 38 | + "Programming Language :: Python :: 3.13", |
| 39 | + "Topic :: Software Development :: Libraries :: Python Modules", |
41 | 40 | ], |
42 | 41 | ) |
0 commit comments