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 69242fb commit 25dd6d4Copy full SHA for 25dd6d4
setup.py
@@ -1,10 +1,15 @@
1
#!/usr/bin/env python
2
from setuptools import setup
3
4
+
5
+with open('README.md') as f:
6
+ long_description = f.read()
7
8
setup(
9
name='django-admin-numeric-filter',
10
short_description='Numeric filters for Django admin',
- long_description=open('README.md').read(),
11
+ long_description=long_description,
12
+ long_description_content_type='text/markdown',
13
version='0.1.0',
14
packages=[
15
'admin_numeric_filter',
@@ -21,4 +26,4 @@
21
26
'Framework :: Django',
22
27
],
23
28
keywords="django admin numeric filter"
24
-)
29
+)
0 commit comments