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 217f588 commit 04ed6caCopy full SHA for 04ed6ca
setup.py
@@ -1,20 +1,23 @@
1
# -*- coding: utf-8 -*-
2
#!/usr/bin/env python
3
4
-import codecs
5
-
6
try:
7
from setuptools import setup
8
except ImportError:
9
from distutils.core import setup
10
11
__version__ = "1.0.1"
12
+
+def get_long_description():
13
+ return open("README.md", "r", encoding="utf8").read()
14
15
16
setup(
17
name="webstack-django-sorting",
18
version=__version__,
19
description="Easy sorting of tables with Django",
- long_description=codecs.open("README.md", "r", "utf-8").read(),
20
+ long_description=get_long_description(),
21
author="Stéphane Raimbault",
22
author_email="stephane.raimbault@webstack.fr",
23
url="http://github.com/webstack/webstack-django-sorting/",
0 commit comments