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 5b146df commit d97ead8Copy full SHA for d97ead8
setup.py
@@ -1,4 +1,4 @@
1
-from setuptools import setup
+from setuptools import setup, find_packages
2
3
with open("README.md", "r") as fh:
4
long_description = fh.read()
@@ -11,7 +11,13 @@
11
description="django-tables2 with AJAX searching and pagination.",
12
long_description=long_description,
13
long_description_content_type="text/markdown",
14
+ url="https://github.com/LegendaryFire/django-responsive-tables2",
15
python_requires='>=3.8',
16
+ packages=find_packages(),
17
+ include_package_data=True,
18
+ setup_requires=[
19
+ "setuptools-git >= 1.2",
20
+ ],
21
install_requires=[
22
'django >= 5.0.0',
23
'django_tables2 >= 2.7.0',
0 commit comments