We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1bbf8d9 commit bd1cd21Copy full SHA for bd1cd21
setup.py
@@ -1,10 +1,24 @@
1
from setuptools import setup
2
3
+with open("README.md", "r") as fh:
4
+ long_description = fh.read()
5
+
6
setup(
7
name='django-responsive-tables2',
- version='0.0.1',
8
+ version='0.8.0',
9
+ author='Tristan Balon',
10
+ author_email='[email protected]',
11
+ description="django-tables2 with AJAX searching and pagination.",
12
+ long_description=long_description,
13
+ long_description_content_type="text/markdown",
14
python_requires='>=3.8',
15
install_requires=[
- 'django >= 5.0',
16
+ 'django >= 5.0.0',
17
+ 'django_tables2 >= 2.7.0',
18
],
19
+ classifiers=[
20
+ 'Programming Language :: Python :: 3',
21
+ 'Framework :: Django :: 5.0',
22
+ 'License :: OSI Approved :: MIT License',
23
+ ]
24
)
0 commit comments