Skip to content

Commit d7c5cff

Browse files
committed
Add long description
1 parent 7b4ee5c commit d7c5cff

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

setup.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,16 @@
33
from setuptools.depends import get_module_constant
44
from setuptools import setup
55

6+
with open("README.md", "r", encoding="utf-8") as fh:
7+
long_description = fh.read()
8+
69
setup(
710
name = 'detectlanguage',
811
packages = ['detectlanguage'],
912
version = get_module_constant('detectlanguage', '__version__'),
1013
description = 'Language Detection API Client',
14+
long_description=long_description,
15+
long_description_content_type="text/markdown",
1116
author = 'Laurynas Butkus',
1217
author_email = 'info@detectlanguage.com',
1318
url = 'https://github.com/detectlanguage/detectlanguage-python',

0 commit comments

Comments
 (0)