Skip to content

Commit bd1cd21

Browse files
committed
Update setuptools config for publishing.
1 parent 1bbf8d9 commit bd1cd21

File tree

1 file changed

+16
-2
lines changed

1 file changed

+16
-2
lines changed

setup.py

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,24 @@
11
from setuptools import setup
22

3+
with open("README.md", "r") as fh:
4+
long_description = fh.read()
5+
36
setup(
47
name='django-responsive-tables2',
5-
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",
614
python_requires='>=3.8',
715
install_requires=[
8-
'django >= 5.0',
16+
'django >= 5.0.0',
17+
'django_tables2 >= 2.7.0',
918
],
19+
classifiers=[
20+
'Programming Language :: Python :: 3',
21+
'Framework :: Django :: 5.0',
22+
'License :: OSI Approved :: MIT License',
23+
]
1024
)

0 commit comments

Comments
 (0)