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 7b4ee5c commit d7c5cffCopy full SHA for d7c5cff
setup.py
@@ -3,11 +3,16 @@
3
from setuptools.depends import get_module_constant
4
from setuptools import setup
5
6
+with open("README.md", "r", encoding="utf-8") as fh:
7
+ long_description = fh.read()
8
+
9
setup(
10
name = 'detectlanguage',
11
packages = ['detectlanguage'],
12
version = get_module_constant('detectlanguage', '__version__'),
13
description = 'Language Detection API Client',
14
+ long_description=long_description,
15
+ long_description_content_type="text/markdown",
16
author = 'Laurynas Butkus',
17
author_email = 'info@detectlanguage.com',
18
url = 'https://github.com/detectlanguage/detectlanguage-python',
0 commit comments