Skip to content

Commit

Permalink
markdown support
Browse files Browse the repository at this point in the history
  • Loading branch information
Lukas committed Aug 15, 2018
1 parent 69242fb commit 25dd6d4
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,15 @@
#!/usr/bin/env python
from setuptools import setup


with open('README.md') as f:
long_description = f.read()

setup(
name='django-admin-numeric-filter',
short_description='Numeric filters for Django admin',
long_description=open('README.md').read(),
long_description=long_description,
long_description_content_type='text/markdown',
version='0.1.0',
packages=[
'admin_numeric_filter',
Expand All @@ -21,4 +26,4 @@
'Framework :: Django',
],
keywords="django admin numeric filter"
)
)

0 comments on commit 25dd6d4

Please sign in to comment.